Adds a GROUP BY clause to the query using the FieldName of the SchemaItem. If you want to order the data by two columns you will need to call this method twice.
VB.NET
emps.Query.AddOrderBy(EmployeesSchema.LastName) emps.Query.AddOrderBy(EmployeesSchema.FirstName)C#
emps.Query.AddOrderBy(EmployeesSchema.LastName); emps.Query.AddOrderBy(EmployeesSchema.FirstName);
DynamicQuery Class | NCI.EasyObjects Namespace | DynamicQuery.AddGroupBy Overload List