5 回答
TA贡献1712条经验 获得超3个赞
由于您拥有多对多关系,因此最好将查询基于(开始)结果实体 ( Children),从而避免需要GroupBy/Distinct如果您从另一端 ( Parent) 开始它。
所以给出
IQueryable<Parent> parents
并假设您有权访问上下文,则可以按如下方式编写查询:
var query = context.Set<Children>()
.Where(c => parents.All(p => p.ParentChildrens.Select(pc => pc.ChildrenId).Contains(c.ChildrenId)))
.Select(c => new
{
Id = c.ChildrenId,
Name = c.ChildrenLocalizations.Where(cl => cl.Language == "en").Select(cl => cl.Name).FirstOrDefault()
});
这很好地转换为单个 SQL。
您从unique Children开始。对于要求 (2),您只需使用导航属性。要求 (1) 更复杂(all总是比any更难实现),但我认为标准
parents.All(p => p.ParentChildrens.Select(pc => pc.ChildrenId).Contains(c.ChildrenId))
相当直观地代表所有父母共有的孩子。
TA贡献1859条经验 获得超6个赞
鉴于IQueryable<Parent> parents
parents
.SelectMany(p => p.ParentChildrens)
.Select(pc => pc.Children)
.Where(c => c.ParentChildrens
.Select(pc => pc.ParentId)
.OrderBy(i => i)
.SequenceEqual(parents.Select(p => p.ParentId).OrderBy(i => i)))
.Select(c => new
{
Id = c.ChildrenId,
c.ChildrenLocalizations.FirstOrDefault(cl => cl.Language == "en").Name
})
TA贡献1883条经验 获得超3个赞
假设你有 3 个父母,ID 为 10、11、12 假设你有 3 个孩子,ID 为 20、21、22
父子表:
ChildId | ParentId
20 10
20 11
20 12
21 10
21 11
22 10
22 12
所以孩子 20 有父母 10/11/12;孩子 21 有父母 10/11;孩子 22 有父母 10/12。
“获得所有父母共有的孩子”;如果这意味着:获取在其父母集合中具有每个可用父母的孩子,那么很容易看出您只想要 20 个孩子,并且您只想要这个孩子一次
因为所有的父子关系都是唯一的,我们知道如果有 X 个父母,我们想要的孩子正好有 X 个父母。
你不想要这些孩子的所有属性,你只想“从 ChildrenLocalization 中获取它的名字 Language="en ",是否总是有零个或一个这样的名字?如果有更多我们应该取哪个?任何名字,或所有的名字?
因为我们需要将自己限制为 ParentCount 等于父母数量的所有孩子,所以我们还需要计算每个孩子的父母数量
var childrenWithParentCount = dbContext.Children.Select(child => new
{
// "get its name from ChildrenLocalization with Language="en"
LocalizationName = child.ChildrenLocalizations
.Where(localization => localization.Language == "en")
.Select(localization => localizaition.Name)
.FirstOrDefault();
// or if you want all names:
LocalizationNames = child.ChildrenLocalizations
.Where(localization => localization.Language == "en")
.Select(localization => localizaition.Name)
.ToList;
ParentCount = child.ParentChildren
.Select(parentChild => parentChild.ParentId)
.Count();
});
现在我们不想要所有这些孩子,我们只想要那些 ParentCount 等于 Parents 数量的孩子
var childrenWithAllParents = childrenWithParentCount
.Where(child => !child.ParentCount == dbContext.Parents.Count());
你注意到了吗,我只创建了 IQueryable 对象,我还没有执行任何查询。要执行查询:
var result = childrenWithAllParents.ToList();
有些人喜欢用一个大的 LINQ 语句来打动别人;好吧,它是:
var result = dbContext.Children.Select(child => new
{
LocalizationName = child.ChildrenLocalizations
.Where(localization => localization.Language == "en")
.Select(localization => localizaition.Name)
.FirstOrDefault();
ParentCount = child.ParentChildren
.Select(parentChild => parentChild.ParentId)
.Count();
})
.Where(child => !child.ParentCount == dbContext.Parents.Count())
.ToList();
幸运的是,您的数据库管理系统足够聪明,可以记住 Parents 的数量,而不是为每个 Child 重新计算一次。
TA贡献1842条经验 获得超12个赞
如果我理解正确,这可能会起作用。这将是一个单一的查询。
var result =
(from parent in context.Parents
from pToC in parent.ParentChildrens
where pToC.Children.ParentChildrens.Select(pc => pc.ParentId).Distinct().Count() == context.Parents.Count()
from childLocation in pToC.Children.ChildrenLocalizations
where childLocation.Language == "en"
select new { pToC.Children.ChildrenId, childLocation.Name }).Distinct();
TA贡献1773条经验 获得超3个赞
您需要将呼叫从您的分组中分离出来。
List<Parent> result = context.Parents
.Include(i => i.ParentChildrens)
.ThenInclude(i => i.Children)
.ThenInclude(i => i.ChildrenLocalizations)
.ToList();
var finalResult = result.SelectMany(c => c.ParentChildrens, (o, j) =>
{
return new
{
Id = j.ChildrenId,
Parent = o.ParentId,
Name = j.Children.ChildrenLocalizations.First(c => c.Language == "en").Name
};
});
- 5 回答
- 0 关注
- 102 浏览
添加回答
举报