Question

I have a System.Data.DataView object but only want the first ten records, sorted by a column called "responseTime".

DataView dv = Factory.GetDataView("something");
dv.Sort = "responseTime desc";

// now what?
Was it helpful?

Solution

If you're using .NET 3.5 you could use a LINQ query. Something like:

var query = (from row in dv select row).Take(10)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top