有没有办法创建Linq2SQL查询,将其转换为:
SELECT COUNT(*) as totalCount ,
SUM(v.field1) AS totalfield1,
....
SUM(v.<fieldN>) AS total<fieldN>
FROM [dbo].[SomeTable] v
答案 0 :(得分:0)
我在DataObjects.NET
中找到了soluthionvar query =
from product in Query.All<Product>()
where product.ProductName.Contains("a")
select new {Product = product, FakeKey = 0} into i
group i.Product.UnitPrice by i.FakeKey into g
select new { Count = g.Count(), Price = g.Sum() };
var result = query.AsEnumerable().Single();
SQL:
SELECT Count_big(*) AS [column1],
SUM([a].[UnitPrice]) AS [column2]
FROM (SELECT [b].[ProductId],
[b].[TypeId],
[b].[ProductName],
[b].[Seller],
[b].[Category.Id],
[b].[ProductType],
[b].[UnitPrice],
[b].[UnitsInStock],
[b].[UnitsOnOrder],
[b].[ReorderLevel],
[b].[QuantityPerUnit],
0 AS [column]
FROM [dbo].[Products] [b]
WHERE ( [b].[ProductName] LIKE '%a%' )) [a]
GROUP BY [a].[column];
答案 1 :(得分:0)
您可以尝试类似
的内容var query = from p in SalesOrderDetails
group p by p.ProductID into g
select new
{id = g.Key, Count = g.Count(), Sum = g.Sum(p => p.OrderQty)};
Console.Write(query);
但你使用假密钥然后枚举的解决方案似乎好多了。
var query = from p in SalesOrderDetails
group p by p.ProductID into g
select new
{id = g.Key, FalseKey = 1, Count = g.Count(), Sum = g.Sum(p => p.OrderQty) };
//Console.Write(query);
var result = from q in query
group q by q.FalseKey into c
select new { summation = c.Sum(q => q.Sum)};
Console.Write(result);