This doesn't work
DataTable myNewTable = myDataTable.Select("Name <> 'n/a'").CopyToDataTable();
myDataTable
has a row named Name
. I would like to select the rows from this table where Name is not equal to "n/a". It selects but still am missing the null values i need the null values too.
Can anyone help?