检查可能为 Null 的 Linq 查询
为简单起见,我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅左外连接
See Left Outer Join