Hello
How can I get the Nth row using Linq? both columns are text so I cant use min/max
/M
Hello
How can I get the Nth row using Linq? both columns are text so I cant use min/max
/M
You can use skip and take.
var result = myData.OrderBy(<your order by>).Skip(5).Take(1);