To check whether a property is null using LINQ for MongoDB, we can write
var query = collection
.AsQueryable()
.Where(x => x.MyProperty == null);
But in MongoDB, null and undefined are different from each other. How can we test using LINQ(!) whether a property is (or is not) undefined?