Is Aggregate fatally flawed because each into clause is executed separately?

前端 未结 2 1455
遥遥无期
遥遥无期 2021-01-02 02:05

Is VB.NET\'s Aggregate query fatally flawed when used as the first (outer) clause of a Linq expression with multiple Into clauses because each

相关标签:
2条回答
  • 2021-01-02 02:35

    To answer my broader question: is Aggregate broken for producing separate SQL queries without transactions?

    All of LINQ can cause that if you don't carefully adjust your queries to only result in a single SELECT, and that may not be possible, without "giving up", retrieving a larger result in a single query and then using Linq-to-Objects to aggregate or otherwise manipulate the data. This 'query' for example.

    So it is, in general, up to the programmer to ensure transactions are added around LINQ queries that may cause multiple queries. We just need to know for sure which LINQ queries may transform into multiple SQL queries.

    0 讨论(0)
  • 2021-01-02 02:44

    Although it doesn't use the Aggregate keyword, you can do multiple functions in a single query using the following syntax:

    Dim query = From book In books _
        Group By key = book.Subject Into Group _
        Select id = key, _
            BookCount = Group.Count, _
            TotalPrice = Group.Sum(Function(_book) _book.Price), _
            LowPrice = Group.Min(Function(_book) _book.Price), _
            HighPrice = Group.Max(Function(_book) _book.Price), _
            AveragePrice = Group.Average(Function(_book) _book.Price)
    

    There does appear to be an issue with the Aggregate clause implementation though. Consider the following query from Northwind:

    Aggregate o in Orders
    into Sum(o.Freight),
    Average(o.Freight),
    Max(o.Freight)
    

    This issues 3 database requests. The first two perform separate aggregate clauses. The third pulls the entire table back to the client and performs the Max on the client through Linq to Objects.

    0 讨论(0)
提交回复
热议问题