返回具有匿名类型的linq查询的指定类型

本文关键字:类型 查询 linq 返回 | 更新日期: 2023-09-27 18:10:04

我有这样的查询:

DbQuery<Logs> logs = context.GetQuery<Logs>();
var MessageLogs =
    logs.Where(
        s =>
            s.DATE == date.Date
        .GroupBy(s => new {s.DATE, s.ID})
        .Select(
            g => new {Date = g.Key.DATE, SID = g.Key.ID, Count = g.Count()})
        .GroupBy(x => x.SID, x => new {x.Date, x.Count});

和我有这两个类:

public class Data
{
    public Values[] Val { get; set; }
    public string Key { get; set; }
}

:

public class Values
{
    public string type1 { get; set; }
    public string type2 { get; set; }
}

所有我想做的是使用该查询返回数据的类型。类Data中的key是SID,值列表应该是计数和日期类型1和类型2。我知道我可以用匿名类型做到这一点,但我不知道怎么做,我尝试了很多方法,但他们都是错误的。

 EDIT:

我有这个查询

    logs.Where(
        s =>
            s.DATE == date.Date
        .GroupBy(s => new {s.DATE, s.ID})
        .Select(
            g => new {Date = g.Key.DATE, SID = g.Key.ID, Count = g.Count()})

这个查询返回如下内容:

 key   date      count
----------------------------
1021   2012        1
1021   2013       5
1022   2001        10
1023   2002        14

我想要的是基于每个id的值列表事实上,返回类型应该是数据类型这个id是关键,例如

key=1021 and Values[] should be type1=2012, type2=1 and type1=2013, type2=5

返回具有匿名类型的linq查询的指定类型

给定当前查询返回带有键/日期/计数的元素,听起来您可能只想要:

var result = query.GroupBy(
    x => x.Key,
    (key, rows) => new Data {
       Key = key,
       Val = rows.Select(r => new Values { type1 = r.Date, type2 = r.Count })
                 .ToArray();
    });

基本上这个重载需要:

  • 键选择器
  • 从键和匹配行到结果元素的转换(在您的示例中是Data的实例)