SQL HAVING CLAUSE 的 LINQ 查询

LINQ query for SQL HAVING CLAUSE

[重写:31/01] 我遇到了这个问题,我试图在我使用 HAVING ... AND.

的地方重新生成 SQL 查询

下面的 table 显示了商店 table (ID) 和资产(A-F 是资产的类型或名称)的简化视图。 我的视图向控制器发送一个名称列表(来自使用 MvcCheckBoxList 实现的复选框)。

我的查询结果应该是一个列表 ID,其中每个 ID 至少包含一个所选的每个资产名称。

例子 - 姓名列表仅包括 A 和 B return ID { 4 } - 姓名列表 = A、C 和 E returns IDs { 4 和 6 }

SQL查询 以前我使用循环创建一个文本字符串,它将后续的 AND 子句连接在一起并作为 SQL connectionString.

传递

上面的示例 1 看起来像这样:

SELECT * FROM Stores S, ....(all other columns required)
LEFT JOIN Assets A ON S.ID == A.SID
WHERE (DATE ....)
HAVING (count(case when A.Name == "A" then 1 else NULL end) > 0) AND (count(case when A.Name == "B" then 1 else NULL end) > 0)
GROUP BY S.ID;

这是我需要重现的..

Linq 查询 这个我试过了

stores = (from s in stores 
join a in db.Assets on s.ID equals a.StoreID
where (postedTillNames.Contains(a.Name)).Distinct().ToList();

但这 return 是任何具有任何名称的商店。 postedTillNames 是从模型中的视图回发的,是一个字符串数组。

使用for循环的解决方案

所以我找到了一个非 Linq 的解决方法,我将暂时使用它,但如果可能的话我想使用干净的 linq(并且也学习一些东西 ;-):

List<Store> tillStores = new List<Store>();
foreach (var s in stores)
{
    bool r = true;

    for (int c = 0; c < postedTillNames.Count(); c++)
    {
        r = (s.Assets.Where(a => a.Name == postedTillNames[c]).Count() > 0) ? true : false;
        if (!r) break;
    }

    if (r) tillStores.Add(s);
}

再次感谢您到目前为止的帖子和评论。

问候 克雷格


更新:我已经完全重写了问题所以请从顶部阅读

使用以下 class 结构:

class Store
{
    public int ID { get; set; }
    public string Name { get; set; }
}
class Asset
{
    public int StoreID { get; set; }
    public string Name { get; set; }        
}

和数据:

List<Store> Stores = new List<Store>()
{
   new Store { ID = 1, Name = "First"},
   new Store { ID = 2, Name = "Second"},
   new Store { ID = 3, Name = "Third"},
   new Store { ID = 4, Name = "Fourth"},
   new Store { ID = 5, Name = "Fifth"},
   new Store { ID = 6, Name = "Sixth"}
};

List<Asset> Assets = new List<Asset>()
{
    new Asset { StoreID = 1, Name = "B"},
    new Asset { StoreID = 1, Name = "B"},
    new Asset { StoreID = 1, Name = "F"},
    new Asset { StoreID = 1, Name = "F"},
    new Asset { StoreID = 2, Name = "A"},
    new Asset { StoreID = 2, Name = "A"},
    new Asset { StoreID = 2, Name = "C"},
    new Asset { StoreID = 2, Name = "D"},
    new Asset { StoreID = 3, Name = "B"},
    new Asset { StoreID = 3, Name = "B"},
    new Asset { StoreID = 3, Name = "B"},
    new Asset { StoreID = 4, Name = "A"},
    new Asset { StoreID = 4, Name = "B"},
    new Asset { StoreID = 4, Name = "C"},
    new Asset { StoreID = 4, Name = "C"},
    new Asset { StoreID = 4, Name = "D"},
    new Asset { StoreID = 4, Name = "D"},
    new Asset { StoreID = 4, Name = "D"},
    new Asset { StoreID = 4, Name = "E"},
    new Asset { StoreID = 4, Name = "F"},
    new Asset { StoreID = 5, Name = "D"},
    new Asset { StoreID = 6, Name = "A"},
    new Asset { StoreID = 6, Name = "A"},
    new Asset { StoreID = 6, Name = "C"},
    new Asset { StoreID = 6, Name = "E"}
  };

作为DB中存储的真实表和数据的模型,您可以使用以下Linq查询来获取您想要的内容:

string[] postedTillNames = { "A", "C", "E"};

var result = (from s in Stores
             join a in Assets on s.ID equals a.StoreID
             group new { A = a, S = s } by a.StoreID into assetsGroup
             where !postedTillNames.Any(p => !assetsGroup.Select(g => g.A.Name)
                                                         .Contains(p))
             select assetsGroup.First().S).ToList();

上面的查询 returns 一个 List<Store> 包含 ID = 4、6 的商店的对象。