How to the select top n rows from a datatable/dataview in ASP.NET? Currently I am using the following code, passing the table and number of rows to get the records. Is there
In framework 3.5, dt.Rows.Cast<System.Data.DataRow>().Take(n)
dt.Rows.Cast<System.Data.DataRow>().Take(n)
Otherwise the way you mentioned