-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added EvaluateGroupByAtDatabase For EF Core 2.1 (#197)
* EvaluateGroupByAtDatabase (#165) * wip * Added ParsingConfig.DefaultEFCore21 * Added EvaluateGroupByAtDatabase to Select and SelectMany
- Loading branch information
Showing
12 changed files
with
259 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src-console/ConsoleAppEF2.1/ConsoleApp_netcore2.0_EF2.1.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<AssemblyName>ConsoleAppEF21</AssemblyName> | ||
<RootNamespace>ConsoleAppEF21</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.1.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace ConsoleAppEF21.Database | ||
{ | ||
public class Car | ||
{ | ||
[Key] | ||
public int Key { get; set; } | ||
|
||
[Required] | ||
[StringLength(8)] | ||
public string Vin { get; set; } | ||
|
||
[Required] | ||
public string Year { get; set; } | ||
|
||
[Required] | ||
public string Brand { get; set; } | ||
|
||
[Required] | ||
public string Color { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using Microsoft.EntityFrameworkCore; | ||
using Microsoft.Extensions.Logging; | ||
using Microsoft.Extensions.Logging.Console; | ||
|
||
namespace ConsoleAppEF21.Database | ||
{ | ||
public class TestContext : DbContext | ||
{ | ||
public static readonly LoggerFactory MyLoggerFactory = new LoggerFactory(new[] { new ConsoleLoggerProvider((filter, includeScopes) => true, true) }); | ||
|
||
public virtual DbSet<Car> Cars { get; set; } | ||
|
||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) | ||
{ | ||
optionsBuilder.UseLoggerFactory(MyLoggerFactory); // Warning: Do not create a new ILoggerFactory instance each time | ||
optionsBuilder.EnableSensitiveDataLogging(); | ||
|
||
optionsBuilder.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Database=CarsEF20;Trusted_Connection=True;"); | ||
} | ||
|
||
protected override void OnModelCreating(ModelBuilder modelBuilder) | ||
{ | ||
modelBuilder.Entity<Car>().HasKey(c => c.Key); | ||
} | ||
|
||
// https://stackoverflow.com/questions/46212704/how-do-i-write-ef-functions-extension-method | ||
public static bool Like(string matchExpression, string pattern) => EF.Functions.Like(matchExpression, pattern); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Linq.Dynamic.Core; | ||
using ConsoleAppEF21.Database; | ||
using Newtonsoft.Json; | ||
|
||
namespace ConsoleAppEF21 | ||
{ | ||
class Program | ||
{ | ||
//class C : AbstractDynamicLinqCustomTypeProvider, IDynamicLinkCustomTypeProvider | ||
//{ | ||
// public HashSet<Type> GetCustomTypes() | ||
// { | ||
// var assemblies = AppDomain.CurrentDomain.GetAssemblies(); | ||
|
||
// var set = new HashSet<Type>(FindTypesMarkedWithDynamicLinqTypeAttribute(assemblies)) | ||
// { | ||
// typeof(TestContext) | ||
// }; | ||
|
||
// return set; | ||
// } | ||
//} | ||
|
||
//private static IQueryable GetQueryable() | ||
//{ | ||
// var random = new Random((int)DateTime.Now.Ticks); | ||
|
||
// var x = Enumerable.Range(0, 10).Select(i => new | ||
// { | ||
// Id = i, | ||
// Value = random.Next(), | ||
// }); | ||
|
||
// return x.AsQueryable().Select("new (it as Id, @0 as Value)", random.Next()); | ||
// // return x.AsQueryable(); //x.AsQueryable().Select("new (Id, Value)"); | ||
//} | ||
|
||
static void Main(string[] args) | ||
{ | ||
var list = new List<Car> { new Car { Key = 1 }, new Car { Key = 2 } }; | ||
|
||
var carsTest = list.AsQueryable().Where("Key = @0", "1").ToList(); | ||
|
||
//IQueryable qry = GetQueryable(); | ||
|
||
//var result = qry.Select("it").OrderBy("Value"); | ||
//try | ||
//{ | ||
// Console.WriteLine("result {0}", JsonConvert.SerializeObject(result, Formatting.Indented)); | ||
//} | ||
//catch (Exception) | ||
//{ | ||
// // Console.WriteLine(e); | ||
//} | ||
|
||
//var all = new | ||
//{ | ||
// test1 = new List<int> { 1, 2, 3 }.ToDynamicList(typeof(int)), | ||
// test2 = new List<dynamic> { 4, 5, 6 }.ToDynamicList(typeof(int)), | ||
// test3 = new List<object> { 7, 8, 9 }.ToDynamicList(typeof(int)) | ||
//}; | ||
// Console.WriteLine("all {0}", JsonConvert.SerializeObject(all, Formatting.None)); | ||
|
||
var config = ParsingConfig.DefaultEFCore21; | ||
|
||
var context = new TestContext(); | ||
if (!context.Cars.Any()) | ||
{ | ||
context.Cars.Add(new Car { Brand = "Ford", Color = "Blue", Vin = "yes", Year = "2017" }); | ||
context.Cars.Add(new Car { Brand = "Fiat", Color = "Red", Vin = "yes", Year = "2016" }); | ||
context.Cars.Add(new Car { Brand = "Alfa", Color = "Black", Vin = "no", Year = "1979" }); | ||
context.Cars.Add(new Car { Brand = "Alfa", Color = "Black", Vin = "a%bc", Year = "1979" }); | ||
context.SaveChanges(); | ||
} | ||
|
||
//var g1 = context.Cars.GroupBy("new(Brand)").Select("new(Key.Brand as KeyValue1, it.Count() as CountValue1)").ToDynamicList(); | ||
//Console.WriteLine("GroupBy @ local {0}", JsonConvert.SerializeObject(g1, Formatting.Indented)); | ||
|
||
//Console.WriteLine(new string('_', 80)); | ||
|
||
var g2 = context.Cars.GroupBy("new(Brand)", config).Select("new(Key.Brand as KeyValue2, it.Count() as CountValue2)").ToDynamicList(); | ||
Console.WriteLine("GroupBy @ database {0}", JsonConvert.SerializeObject(g2, Formatting.Indented)); | ||
|
||
//var carFirstOrDefault = context.Cars.Where(config, "Brand == \"Ford\""); | ||
//Console.WriteLine("carFirstOrDefault {0}", JsonConvert.SerializeObject(carFirstOrDefault, Formatting.Indented)); | ||
|
||
//var carsLike1 = | ||
// from c in context.Cars | ||
// where EF.Functions.Like(c.Brand, "%a%") | ||
// select c; | ||
//Console.WriteLine("carsLike1 {0}", JsonConvert.SerializeObject(carsLike1, Formatting.Indented)); | ||
|
||
//var cars2Like = context.Cars.Where(c => EF.Functions.Like(c.Brand, "%a%")); | ||
//Console.WriteLine("cars2Like {0}", JsonConvert.SerializeObject(cars2Like, Formatting.Indented)); | ||
|
||
//var dynamicCarsLike1 = context.Cars.Where(config, "TestContext.Like(Brand, \"%a%\")"); | ||
//Console.WriteLine("dynamicCarsLike1 {0}", JsonConvert.SerializeObject(dynamicCarsLike1, Formatting.Indented)); | ||
|
||
//var dynamicCarsLike2 = context.Cars.Where(config, "TestContext.Like(Brand, \"%d%\")"); | ||
//Console.WriteLine("dynamicCarsLike2 {0}", JsonConvert.SerializeObject(dynamicCarsLike2, Formatting.Indented)); | ||
|
||
//var dynamicFunctionsLike1 = context.Cars.Where(config, "DynamicFunctions.Like(Brand, \"%a%\")"); | ||
//Console.WriteLine("dynamicFunctionsLike1 {0}", JsonConvert.SerializeObject(dynamicFunctionsLike1, Formatting.Indented)); | ||
|
||
//var dynamicFunctionsLike2 = context.Cars.Where(config, "DynamicFunctions.Like(Vin, \"%a.%b%\", \".\")"); | ||
//Console.WriteLine("dynamicFunctionsLike2 {0}", JsonConvert.SerializeObject(dynamicFunctionsLike2, Formatting.Indented)); | ||
|
||
//var testDynamic = context.Cars.Select(c => new | ||
//{ | ||
// K = c.Key, | ||
// C = c.Color | ||
//}); | ||
|
||
//var testDynamicResult = testDynamic.Select("it").OrderBy("C"); | ||
//try | ||
//{ | ||
// Console.WriteLine("resultX {0}", JsonConvert.SerializeObject(testDynamicResult, Formatting.Indented)); | ||
//} | ||
//catch (Exception e) | ||
//{ | ||
// Console.WriteLine(e); | ||
//} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.