How to get multiple column value in linq query
HiI want to select multiple column in my query with where condition. The Additional column name is ProdName which i want to get the value and Where the "TotalUnits" = 0.
IEnumerable<string> query = from rowValue in dt.AsEnumerable()
select rowValue.Field<string>("TotalUnits");
How can i do this. Above i can select single column only.