Solution:
use Enumerable.Select
with AsEnumerable.
var results = tmp.AsEnumerable() .Select((row, index) => new { row.ContainerID, row.TypeID, ContainerIndex = index }); |
Thoughts on C#, .NET, programming, software development and productivity. Tips and tricks to solve various programming problems.
Solution:
use Enumerable.Select
with AsEnumerable.
var results = tmp.AsEnumerable() .Select((row, index) => new { row.ContainerID, row.TypeID, ContainerIndex = index }); |