Hello Friends,
I want to display non empty/non null rows based on column “country”.
I am getting error as shown in below screenshot,
LINQ :–>
(
From currentRow In DataTbl
Where Not currentRow(“Country”).ToString.IsNullOrEmpty
Select currentRow
).CopyToDatatable
May i know why i am getting this error? and how to resolve this error?