Adding a GroupBy specification example

This commit is contained in:
Eric Fleming
2019-04-20 21:49:57 -04:00
parent 1632f7fb75
commit 468df47c22
4 changed files with 14 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
List<string> IncludeStrings { get; }
Expression<Func<T, object>> OrderBy { get; }
Expression<Func<T, object>> OrderByDescending { get; }
Expression<Func<T, object>> GroupBy { get; }
int Take { get; }
int Skip { get; }