实体框架 – 实体框架 – Linq To Entities – 多对多查询问题

前端之家收集整理的这篇文章主要介绍了实体框架 – 实体框架 – Linq To Entities – 多对多查询问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在查询 Linq To Entities中的多对多关系时遇到问题.
我基本上尝试使用Linq复制此查询
Select * 
FROM Customer 
LEFT JOIN CustomerInterest ON Customer.CustomerID = CustomerInterest.CustomerID
LEFT JOIN Interest ON CustomerInterest.InterestID = Interest.InterestID
WHERE Interest.InterestName = 'Football'

我环顾网络并没有找到任何合适的例子来说明这一点.我最接近的是:

List<Customer> _Customers = (from _LCustomers in _CRM.Customer.Include("CustomerInterest.Interest")
                                  where _LCustomers.CustomerInterest.Any(x => x.Interest.InterestName == "Football")
                                  select _LCustomers).ToList();

这样做的问题是,如果客户有多个兴趣而其中一个是“足球”,则返回所有这些兴趣.我也看过All()哪个有逆问题,即只有他们有一个兴趣才会返回,而且只有足球,如果他们有两个,而其中一个不是足球,则不返回.

有人有任何想法吗?

解决方法

试试这个,
var result = from c in ctx.Customer
             from i in c.Interest
             where i.InterestName == "Football"
             select c;

希望这可以帮助,

射线.

原文链接:https://www.f2er.com/mssql/75754.html

猜你在找的MsSQL相关文章