检查可能为 Null 的 Linq 查询

发布于 2024-11-05 08:36:15 字数 221 浏览 0 评论 0原文

为简单起见,我有 2 个表:

Table1 has UserId Email
Table2 has UserId Score

我想过滤掉所有分数 > 10. 但是,不能保证 Table2 中包含任何用户。 UserId是Table2上的PK和FK。 UserId 是表 1 上的 PK。

我的问题是我需要获取所有存在的分数,然后检查它们。

I have for simplicity 2 tables:

Table1 has UserId Email
Table2 has UserId Score

I want to filter out all scores > 10. But, Table2 is not guaranteed to have any users in it. UserId is a PK and FK on Table2. UserId is a PK on table 1.

My issue is that I need to get all scores where they exist and then check them.

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

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

发布评论

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

评论(1

行雁书 2024-11-12 08:36:16

请参阅左外连接

var q =

    from user in Table1 

    join s in Table2 on user.UserId  equals score.UserId  into lscore

    from score in lscore.DefaultIfEmpty()

    where score == null || lscore.score < 10

    select new { userId = user.userid,  email = user.Email, Score = score == null ? 0 : lscore.score };

See Left Outer Join

var q =

    from user in Table1 

    join s in Table2 on user.UserId  equals score.UserId  into lscore

    from score in lscore.DefaultIfEmpty()

    where score == null || lscore.score < 10

    select new { userId = user.userid,  email = user.Email, Score = score == null ? 0 : lscore.score };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文