new code unit test.

moved entity framework test to in memory database.
This commit is contained in:
David Lebee
2018-10-23 16:12:39 -05:00
parent 3ec2b6b394
commit 2cd1d27df0
6 changed files with 139 additions and 3 deletions
@@ -47,6 +47,9 @@ namespace PoweredSoft.DynamicLinq
public static IQueryable GroupBy(this IEnumerable list, Type type, Action<GroupBuilder> callback)
=> list.AsQueryable().GroupBy(type, callback);
public static IQueryable EmptyGroupBy(this IEnumerable list, Type underlyingType)
=> list.AsQueryable().EmptyGroupBy(underlyingType);
public static List<T> Reversed<T>(this List<T> list)
{
var copy = list.ToList();