I\'m using the method elementat(Int32) to get a specific element of a query\'s result.
elementat(Int32)
var mds = db.TDP_MissioniDestinazioni.Where(p => p.Mis
You can simply mix Skip and First to do the trick:
Skip
First
mds.Skip(i).First()