How would the filter string looks like for DBNull values in DataTable.
"IsNull("Column1", 'Null Column')='Null Column'"
"IsNull("Column1", 'Null Column')<>'Null Column'"
This string to filter Null values in the Column1. It works fine if it is a String column and throws exception for other types.
Any idea on this?
And also i want to know whether Null and DBNull for object type of column is same?
dt.Columns.Add(new DataColumn("Title", typeof (string)));
dt.Columns.Add(new DataColumn("TitleID", typeof(Int32)) {AllowDBNull = true});
dt.Columns.Add(new DataColumn("Date", typeof(object)) );
dt.Columns.Add(new DataColumn("Desc", typeof(string)));
for(int i =0; i<10; i++)
{
var input = i%2 == 0 ? (object) i : DBNull.Value;
var result = input.Equals(DBNull.Value);
DataRow row = dt.NewRow();
row["Title"] = "C#" + i;
row["TitleID"] = i % 2 == 0 ? (object) i : DBNull.Value;
row["Date"] = i == 2 ? (object) DateTime.Now : DBNull.Value;
row["Desc"] = i % 2 == 0 ? null : "";
dt.Rows.Add(row);
}
DataView defView = dt.DefaultView;
defView.RowFilter = "IsNull(Date, 'Null Column')='Null Column'";
var filtered = defView;
I am filtering the
DataTable
based onNULL
Email ID :And there is a good explanation about
NULL
andDBNULL
here.As per the msdn remarks:
I have also tested with
JoinDate
which isNULL
in DB and datatype isdatetime
and also tested withdate
type.Updated
Update your code :
in your
for loop
:then filter. it will work.