Linq to 实体查询不起作用

发布于 2024-11-04 17:41:11 字数 463 浏览 0 评论 0原文

我有以下查询:

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

你知道为什么吗?

I have the following query:

if (entities.User.Count(u => u.Id == ownerUserId && u.GroupId == null) == 0)

I want to check if User with Id == ownerUserId has its GroupId == null, but it doesn't work.

Table:

User
----------------------------------------
Id                  | PK Not Null
GroupId             | FK to Group Table. CAN BE NULL.
...

I want to check if User with Id == ownerId has GroupId == null

Do you know why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞笑我太脆弱 2024-11-11 17:41:11

如果您希望 if 条件在您提到的情况下为 true,则需要检查是否大于 0,而不是等于 0。

If you want the if condition to be true in the case you mentioned, you would need to check for greater than 0, rather than equal to 0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文