How can the query below be modified to include a column for row number (ie: one-based index of results)?
var myResult = from currRow in someTable
Just for fun, here's an alternative to Select with two arguments:
Select
var resultsWithIndexes = myResult.Zip(Enumerable.Range(1, int.MaxValue - 1), (o, i) => new { Index = i, Result = o });