Hi to all, I read some records from xml file to DataTable, now i want to query to this datatable using Linq so i write like below dtLinq is my Datatable object. Actually all columns are displaying in the combo box( CboField) based on this where condition will change var FilterData = from MyObject in dtLinq.AsEnumerable() where MyObject.Field string >(CboField.SelectedItem) > TxtValue.Text select new { WORKSOURCE = MyObject.Field string >( "WORKSOURCE" ), SITEID = MyObject.Field string >( "SITEID"
Read More...