Hey everyone,
I want to check if a datatable contains any null or empty values,
DT.AsEnumerable.Any(Function(x)String.IsNullOrEmpty(x(“column name”).ToString)) i use this for making the same check on a column but I want to chec the whole datatable.
Any help? I dont want to copy paste the above code for all columns or use a for each loop since there are alot of columns and rows.
Ty,