I have the following Linq query:
var tmp = from container in Container join containerType in ContainerType on container.ContainerType equals containerType where containerType.ContainerTypeID == 2 select new { ContainerID = container.ContainerID, TypeID = container.ContainerTypeID}; var results = tmp.Select((row, index) => new { row.ContainerID, row.TypeID, ContainerIndex = index })
Like everyone else, this works great. If I add the following to see the results in LinqPad, I get the error described in the header of this post:
results.Dump();
This error is not a LinqPad error, it comes from Linq, and I donβt understand what that means.
Thanks.
linq
Randy minder
source share