Separate datarows

Hi all i have 500 records in a row i want to separate first 20 records only solve the issue…

1 Like

Use linq query to get first 20 records-
var top20Rows = table.AsEnumerable().Take(20).ToList();

Please share the .xml file …

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.