URF.NET icon indicating copy to clipboard operation
URF.NET copied to clipboard

GroupBy support?

Open rapidclarity opened this issue 5 years ago • 1 comments

Perhaps I am simply missing something obvious, but I am unable to see a way to perform a simple GroupBy on these generic repositories that will occur at the SQL level. Is this functionality currently supported by the generic repositories created by URF.NET?

rapidclarity avatar Nov 12 '18 18:11 rapidclarity

GroupBy is supported by Queryable in System.Linq.

It is not a function coded in URF.NET but it works perfectly.

Example:

_repository.Queryable.GroupBy(...);

maximejobin avatar Apr 16 '19 18:04 maximejobin