需要使用 LINQ 进行与内联接相反的查询的帮助
我的 XML 数据集中有两个表。 T1、T2。 每个表都有一个 ID 列。
T1 有一个客户列表 T2 有一个订单列表,
我想构建一个 LINQ 查询,该查询仅返回没有订单的客户的 ID。 换句话说,T2 表中不存在客户 ID。
哦,是的,我正在使用 C#
谢谢!
I have two tables in an XML Dataset. T1, T2. Each of the tables has a ID column.
T1 has a list of Customers
T2 has a list of Orders
I want to build a LINQ query that returns only the ID of the customers that do not have orders. In other words customer ID's that do not exist in the T2 table.
Oh yea, I'm using C#
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这需要外连接和空值检查。
This requires an outer join and a check on null.
我认为这会起作用(请适应您的数据集):
I think this will work (please adapt to your DataSets):
您只需要我们一个 where 子句和所有内容:
You just need to us a where clause and all: