RSS

Linq query on datatable

05 Aug
var results = from myRow in myDataTable.AsEnumerable()
where myRow.Field<int>("RowNo") == 1
select myRow;
 
Leave a comment

Posted by on August 5, 2016 in .NET

 

Leave a comment