LINQ查询使用GROUP BY和Count(*)进入匿名类型

时间:2013-05-10 19:21:16

标签: .net vb.net linq group-by anonymous-types

我正在尝试使用LINQ查询来确定每种特定对象类型的数量,并将这些值记录到匿名类型中。

假设我有一些看起来像这样的数据(确实存在暴露此属性的对象,但它的工作方式相同)

GroupId
1
1
2
2
2
3

我知道如何在SQL中格式化我的查询。它会是这样的:

SELECT grp = GroupId, cnt = COUNT(*)
FROM myTable
GROUP BY GroupId

在这种情况下,输出类似于this SQL Fiddle

GroupID  Count
1        2
2        3
3        1

如何在vb.net中使用LINQ做同样的事情

Dim groupCounts = From person In data
                  Group By person.GroupId
                  Select new {group = person.GroupId, count = count(*)}

这不太对,但我认为它很接近。

另外,我不太了解匿名类型,我是否可以提前声明groupCounts它将是每个具有group和count属性的项的枚举?

3 个答案:

答案 0 :(得分:15)

我习惯了C#:

var query = from person in data
            group person by person.GroupId into grouping
            select new { Key = grouping.Key, Count = grouping.Count() }

但是我已经在VB中测试了以下片段并且它可以工作:

Dim files = Directory.GetFiles (Path.GetTempPath()).Take (100).ToArray().AsQueryable()

Dim groups = From f In files Group f By key = Path.GetExtension (f) Into Group
             Select Key = key, NumberGroup = Group.Count()

答案 1 :(得分:7)

尝试在LinqPad中使用它,并为您的数据库实体进行调整,它应该让您更接近。

Public Sub grouper2()
    Dim numbers = New Integer() {1,1,2,2,2,3}

    Dim numberGroups = From w In numbers _
                    Group w By Key = w Into Group _
                    Select Number = Key, numbersCount = Group.Count()

    'linqpad specific output
    'numberGroups.Dump()

    For Each g In numberGroups
        Console.WriteLine("Numbers that match '{0}':", g.Number)
            Console.WriteLine(g.numbersCount)        
    Next

End Sub

答案 2 :(得分:2)

因此,在翻译此语法时,vb有点奇怪。您似乎只能将组into插入标题为“Group”的元素。然后,这将公开其余的分组功能

From person In data
Group person By grpId = person.GroupId Into Group
Select id = grpId, count = Group.Count