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?
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)
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
2 years ago
viewed
226 times
active