gpt4 book ai didi

c# - 将 2 个 LINQ 组合成一个调用

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

我使用 2 个类似的 LINQ 查询来返回结果,唯一的区别是 where 子句 (&& s.OptIn == "Yes")。有没有一种方法可以仅通过一个查询来执行此操作?

而不是有一个结果

A   2 
B 3

和另一个结果

A 1
B 1

我想拥有

A   2   1 
B 3 1

这是 LINQ:

        var result = from s in pdc.ScanLogs
from e in pdc.Exhibits
from ce in pdc.ClientEvents
where s.ExhibitID == e.ExhibitID
&& e.ClientEventID == ce.ClientEventID
group 1 by new { ce.EventID } into d
select new {
EventID = d.Key.EventID,
Count = d.Count()
};

var result = from s in pdc.ScanLogs
from e in pdc.Exhibits
from ce in pdc.ClientEvents
where s.ExhibitID == e.ExhibitID
&& e.ClientEventID == ce.ClientEventID
&& s.OptIn == "Yes"
group 1 by new { ce.EventID } into d
select new {
EventID = d.Key.EventID,
Count = d.Count()
};

最佳答案

您可以在 Count 方法中提供谓词。示例如下:

List<int> list = new List<int> { 1, 2, 3, 4, 5 };
var counts = new { CountAll = list.Count(), CountEven = list.Count(i => i % 2 == 0) };
Console.WriteLine(counts.CountEven);

为 Linq-To-Entities 编写的类似查询也有效并生成了有效的 SQL。

我还没有完全重建你的样本,但你应该能够将它重新加工成这样的东西。

var result = from s in pdc.ScanLogs
from e in pdc.Exhibits
from ce in pdc.ClientEvents
where s.ExhibitID == e.ExhibitID
&& e.ClientEventID == ce.ClientEventID
group new { s, e, ce } by new { ce.EventID } into d
select new
{
EventID = d.Key.EventID,
Count = d.Count(),
CountOptIn = d.Count(item => item.s.OptIn == "Yes")
};

关于c# - 将 2 个 LINQ 组合成一个调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3970623/

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