VB.NET中LINQ TO List泛型查询语句分组,聚合函数

Public Class LinqToList
    'LINQ在C#中使用比较方便,但是在VB中使用比较麻烦,复杂,和C#用法并不太一样
    Dim listNew As List(Of Product) = New List(Of Product)  '新商品
    Dim listOld As List(Of Product) = New List(Of Product)  '旧商品

    '****** 给 listNew 加载数据 此处省略******
    '****** 给 listOld 加载数据 此处省略******

    '查询 listNew 中的最高价 price1,并按 price,name,unit,model,node分组
    Dim temp = From Item In listNew
                    Group Item By Key = New With {Key Item.Name,Key Item.Unit,Key Item.Model}
                    Into g = Group Select New With {.price1 = (Aggregate p In g Into Average(p.Price)),.price = (From p In g Select p.Price),.name = Key.Name,.unit = Key.Unit,.model = Key.Model,.note = (From p In g Select p.Note)}    'note并未在分组中,无法再key中获取

    '合并listNew 和listOld ,并按 price,name,unit,model,node分组,求出合并后的最高价price1,相同产品的个数.count
    Dim tempMax = From Item In
            ((From Contact In listNew).Union(From Shipment In listOld))
            Group Item By Key = New With {Key Item.Name,Key Item.Model}
            Into g = Group Select New With {.price1 = (Aggregate p In g Into Max(p.Price)),.note = (From p In g Select p.Note),.count = g.Count()}

    '最低价 .price1 = (Aggregate p In g Into Max(p.Price)) 改成 .price1 = (Aggregate p In g Into Min(p.Price)) 
    '平均价 .price1 = (Aggregate p In g Into Max(p.Price)) 改成 .price1 = (Aggregate p In g Into Average(p.Price))
End Class

Public Class Product
    Private mPrice As Double     '价格
    Private mName As String      '名称
    Private munit As String      '单位
    Private mModel As String     '规格
    Private mNote As String      '备注
    Public Property Price() As Double   '价格
        Get
            Return mPrice
        End Get
        Set(ByVal value As Double)
            mPrice = value
        End Set
    End Property

    Public Property Name() As String    '名称
        Get
            Return mName
        End Get
        Set(ByVal value As String)
            mName = value
        End Set
    End Property

    Public Property Unit() As String    '单位
        Get
            Return munit
        End Get
        Set(ByVal value As String)
            munit = value
        End Set
    End Property

    Public Property Model() As String   '规格
        Get
            Return mModel
        End Get
        Set(ByVal value As String)
            mModel = value
        End Set
    End Property

    Public Property Note() As String    '备注
        Get
            Return mNote
        End Get
        Set(ByVal value As String)
            mNote = value
        End Set
    End Property
End Class

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As Dat...