我在isDeleted
课程中有Nullable
Profile
个属性。
Builders<Profile>.Filter.Eq(p => p.IsDeleted, BsonNull.Value)
但是下面的代码引发了下一个编译错误:
Error 11 Cannot convert lambda expression to type
'MongoDB.Driver.FieldDefinition<MongoDB.DataTypes.Profile,MongoDB.Bson.BsonNull>'
because it is not a delegate type
如何实现空检查?
答案 0 :(得分:5)
如果IsDeleted
可以为空,则在查询时可以使用简单的null
代替BsonNull.Value
:
Builders<Profile>.Filter.Eq(p => p.IsDeleted, null)