Rewrite of most internals

This commit is contained in:
Koen Bekkenutte
2021-05-30 21:45:24 +08:00
parent 0d7bec4bd6
commit 5085b1b6ae
60 changed files with 486 additions and 346 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace EntityFrameworkCore.Projections.Tests.Services
{
public class ProjectableExpressionReplacerTests
{
}
}
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace EntityFrameworkCore.Projections.Tests.Services
{
public class ProjectionExpressionResolverTests
{
//public Expression<Func<int, int>> Test1(int arg1)
// => arg1 + 1;
[Fact]
public void Foo1()
{
}
}
}