Andrei,
I have posted a new version of Sublogix (version 1.3.0.0) which fixes this bug. To query for null values you can do the following:
var repo = new Repository(ConnectionString);var list = repo.Select() .Where("Assistant", Operator.Is, DBNull.Value) .Execute();
To get this new version use the NuGet package manager to get the updated assembly.
Ryan