How do i find the number of rows under each column in a data table?
i have three columns - a,b,c., I want to find the number of entries under each column.
Do we have a linq query for the above?
How do i find the number of rows under each column in a data table?
i have three columns - a,b,c., I want to find the number of entries under each column.
Do we have a linq query for the above?
Hey shreyaank, you can use XYZ.Rows.Count.ToString (where XYZ is the name of your DataTable). Kind regards, Anders