gpt4 book ai didi

c# - 使用 Entity Framework 4 如何过滤引用的实体集合

转载 作者:太空宇宙 更新时间:2023-11-03 20:24:01 25 4
gpt4 key购买 nike

我正在使用 Entity Framework 4 和 C#。我有 Contact 对象,这些对象具有 Addresses 的引用实体集合。因此,一个Contact 可以有多个Address 实体。我想要做的是将返回的与 Contact 关联的 Addresses 过滤为仅来自多伦多市。

这是我正在使用的 LINQ 查询,但它会返回所有 Addresses,只要至少有一个具有 City == "Toronto"。我想将返回的 Address 实体限制为仅包含具有 City == "Toronto"Address 实体。我如何构造 LINQ 查询来执行此操作?

var vcontact = from c in context.Contacts
orderby c.LastName
where c.Addresses.Any(a => a.City == "Toronto")
select c;

最佳答案

var vcontact = from c in context.Contacts
orderby c.LastName
where c.Addresses.Any(a => a.City == "Toronto")
select new Contact
{
LastName = c.LastName;
// map all remaining properties of Contact
Addresses = c.Addresses.Where(a => a.City == "Toronto")
};

关于c# - 使用 Entity Framework 4 如何过滤引用的实体集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11750318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com