Grouping
To request grouped data on initial load, configure the groups in the GroupDescriptorFactory
. The ToDataSourceResult()
extension method will return only the grouped data in the response object.
-
The
Group
method sets the initial groups..Ajax() .Read(read => read.Action("Products_Read", "Home")) .Group(groups => { groups.Add(product => product.UnitPrice); groups.Add(product => product.ProductName); })