Assume I have a column called A and I want to check if A is null or blank, is the proper way to check for this using the DataView's RowFilter:
DataTable dt = GetData();
DataView dv = new DataView(dt);
dv.RowFilter = "A IS NOT NULL OR A IS NOT ''";
The above doesn't seem to work though.