在LINQ中为不同的表分组

时间:2016-04-22 18:54:51

标签: c# sql linq join group-by

我有一个由多个关系组成的数据库,使用联结表和这些表之一的一对多关系。

enter image description here

我创建了以下查询:

Select Producto.Nombre, count(Producto.Nombre), Orden.Fecha
From Producto
INNER JOIN ProductoPedido
ON Producto.IdProducto = ProductoPedido.ProductoIdProducto
INNER JOIN Pedido
ON Pedido.IdPedido = ProductoPedido.PedidoIdPedido
INNER JOIN Orden
ON Pedido.OrdenNumeroOrden = Orden.NumeroOrden
GROUP BY  Producto.Nombre, Orden.Fecha 

如何使用LINQ在我的项目上创建完全相同的查询?

我尝试了以下操作,但它不起作用。

var data = (from producto in _context.Producto
            join productopedido in _context.ProductoPedido on producto.IdProducto equals productopedido.ProductoIdProducto
            join pedido in _context.Pedido on productopedido.PedidoIdPedido equals pedido.IdPedido
            join orden in _context.Orden on pedido.OrdenNumeroOrden equals orden.NumeroOrden
            group new { producto.Nombre,  orden.Fecha } by new { producto, orden } into g
                        select new
                        {
                            Producto = g.Key.producto.Nombre,
                            Cantidad = g.Key.producto.Nombre.Count(),
                            Fecha = g.Key.orden.Fecha
                         });

每当我尝试访问var。

中的信息时,它都会返回ArgumentException: Expression of type
An unhandled exception occurred while processing the request.   
ArgumentException: Expression of type  'System.Func`2[Microsoft.Data.Entity.Query.EntityQueryModelVisitor+TransparentIdentifier`2[Microsoft.Data.Entity.Query.EntityQueryModelVisitor+TransparentIdentifier`2[Microsoft.Data.Entity.Query.EntityQueryModelVisitor+TransparentIdentifier`2[Microsoft.Data.Entity.Storage.ValueBuffer,Microsoft.Data.Entity.Storage.ValueBuffer],Microsoft.Data.Entity.Storage.ValueBuffer],Microsoft.Data.Entity.Storage.ValueBuffer],<>f__AnonymousType3`2[System.String,System.Int32]]' cannot be used for parameter of type 'System.Func`2[<>f__AnonymousType2`2[System.String,System.DateTime],<>f__AnonymousType3`2[System.String,System.Int32]]' of method 'System.Collections.Generic.IEnumerable`1[System.Linq.IGrouping`2[<>f__AnonymousType3`2[System.String,System.Int32],<>f__AnonymousType2`2[System.String,System.DateTime]]] _GroupBy[<>f__AnonymousType2`2,<>f__AnonymousType3`2,<>f__AnonymousType2`2](System.Collections.Generic.IEnumerable`1[<>f__AnonymousType2`2[System.String,System.DateTime]], System.Func`2[<>f__AnonymousType2`2[System.String,System.DateTime],<>f__AnonymousType3`2[System.String,System.Int32]], System.Func`2[<>f__AnonymousType2`2[System.String,System.DateTime],<>f__AnonymousType2`2[System.String,System.DateTime]])'

System.Linq.Expressions.Expression.ValidateOneArgument(MethodBase method,   ExpressionType nodeKind, Expression arg, ParameterInfo pi)

1 个答案:

答案 0 :(得分:0)

试试这个:

var data = (from producto in _context.Producto
        join productopedido in _context.ProductoPedido on producto.IdProducto equals productopedido.ProductoIdProducto
        join pedido in _context.Pedido on productopedido.PedidoIdPedido equals pedido.IdPedido
        join orden in _context.Orden on pedido.OrdenNumeroOrden equals orden.NumeroOrden
        select new { 
            producto.Nombre,
            orden.Fecha
        };

 var grouped = from d in data 
               group d by new {
                 d.Nombre,
                 d.Fecha
               } into g1
               select new {
                 Producto = g1.Key.Nombre,
                 Cantidad = g1.Count(g => g.Nombre),
                 Fecha = g.Key.Fecha
               }

然而,你的查询中有一些不合逻辑的东西:你按照Nomber分组,然后计算组中Nombres的数量。计数总是1。