Question around grouping. I've noticed that when the grid's read happens it calls the assigned web method as you would expect. What I have noticed that the code below produced two different results. One for grouped data and another type for all other grid alterations (filters and sorts).
Sample code:
Dim temp As IQueryable = grid.ToDataSourceResult(request).Data.AsQueryable
No grid alterations or filtering or sorting the data type of the above object is:
System.Linq.EnumerableQuery(Of myDataType)
Apply one or more groups and the data type becomes:
System.Linq.EnumerableQuery(Of Kendo.Mvc.Infrastructure.AggregateFunctionsGroup)
Why does this happen? Have we implemented something incorrectly?