LINQ doesn’t have the equivalent of the SQL “IS NULL” operator. e.g.
SELECT * FROM dbTable where dbColumn IS NULL
In LINQ to write a query against nullable column, fashion the query as,
var results = from a in dbTable where a.dbColumn == null select a;
or
string myVar = null;
var myRows = from a in dbTable where a.dbColumn == myVar || (a.dbColumn == null && myVar == null) select a;