我有以下查询:
if (entities.User.Count(u => u.Id == ownerUserId && u.GroupId == null) == 0)
我想检查具有Id == ownerUserId的User是否其GroupId == null,但它不起作用。
表:
User
----------------------------------------
Id | PK Not Null
GroupId | FK to Group Table. CAN BE NULL.
...
我想检查Id == ownerId
的用户是否有GroupId == null
你知道为什么吗?
答案 0 :(得分:2)
如果你想在你提到的情况下if条件为真,你需要检查大于0,而不是等于0.