diff --git a/src/MockQueryable/MockQueryable.FakeItEasy/MockQueryable.FakeItEasy.csproj b/src/MockQueryable/MockQueryable.FakeItEasy/MockQueryable.FakeItEasy.csproj index cd308db..0006db3 100644 --- a/src/MockQueryable/MockQueryable.FakeItEasy/MockQueryable.FakeItEasy.csproj +++ b/src/MockQueryable/MockQueryable.FakeItEasy/MockQueryable.FakeItEasy.csproj @@ -9,14 +9,14 @@ When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data. true - Supported Entity Framework Core 3.1.1 + Restore support for netstandard2.0 https://github.com/romantitov/MockQueryable https://github.com/romantitov/MockQueryable Mock EntityFrameworkCore Queryable mock EF EFCore UnitTests FakeItEasy true - 3.1.1 - 3.1.1.0 - 3.1.1.0 + 3.1.2 + 3.1.2.0 + 3.1.2.0 LICENSE logo.png diff --git a/src/MockQueryable/MockQueryable.Moq/MockQueryable.Moq.csproj b/src/MockQueryable/MockQueryable.Moq/MockQueryable.Moq.csproj index ef0fbb3..9934236 100644 --- a/src/MockQueryable/MockQueryable.Moq/MockQueryable.Moq.csproj +++ b/src/MockQueryable/MockQueryable.Moq/MockQueryable.Moq.csproj @@ -9,14 +9,14 @@ When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data. true - Supported Entity Framework Core 3.1.1 + Restore support for netstandard2.0 https://github.com/romantitov/MockQueryable https://github.com/romantitov/MockQueryable Mock EntityFrameworkCore Queryable mock EF EFCore UnitTests EntityFrameworkCore Moq true - 3.1.1 - 3.1.1.0 - 3.1.1.0 + 3.1.2 + 3.1.2.0 + 3.1.2.0 LICENSE logo.png diff --git a/src/MockQueryable/MockQueryable.NSubstitute/MockQueryable.NSubstitute.csproj b/src/MockQueryable/MockQueryable.NSubstitute/MockQueryable.NSubstitute.csproj index 0129290..87b9efe 100644 --- a/src/MockQueryable/MockQueryable.NSubstitute/MockQueryable.NSubstitute.csproj +++ b/src/MockQueryable/MockQueryable.NSubstitute/MockQueryable.NSubstitute.csproj @@ -9,14 +9,14 @@ When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data. true - Supported Entity Framework Core 3.1.1 + Restore support for netstandard2.0 https://github.com/romantitov/MockQueryable https://github.com/romantitov/MockQueryable Mock EntityFrameworkCore Queryable mock EF EFCore UnitTests EntityFrameworkCore NSubstitute true - 3.1.1 - 3.1.1.0 - 3.1.1.0 + 3.1.2 + 3.1.2.0 + 3.1.2.0 LICENSE logo.png diff --git a/src/MockQueryable/MockQueryable.Sample/MockQueryable.Sample.csproj b/src/MockQueryable/MockQueryable.Sample/MockQueryable.Sample.csproj index f820573..c29f7f9 100644 --- a/src/MockQueryable/MockQueryable.Sample/MockQueryable.Sample.csproj +++ b/src/MockQueryable/MockQueryable.Sample/MockQueryable.Sample.csproj @@ -1,7 +1,7 @@  - netcoreapp3.0 + netcoreapp3.1 diff --git a/src/MockQueryable/MockQueryable/MockQueryable.csproj b/src/MockQueryable/MockQueryable/MockQueryable.csproj index e02624f..4b4a2bf 100644 --- a/src/MockQueryable/MockQueryable/MockQueryable.csproj +++ b/src/MockQueryable/MockQueryable/MockQueryable.csproj @@ -9,14 +9,14 @@ When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data. true - Supported Entity Framework Core 3.1.1 + Restore support for netstandard2.0 https://github.com/romantitov/MockQueryable https://github.com/romantitov/MockQueryable Mock EntityFrameworkCore Queryable mock EF UnitTests EntityFrameworkCore true - 3.1.1 - 3.1.1.0 - 3.1.1.0 + 3.1.2 + 3.1.2.0 + 3.1.2.0 LICENSE logo.png diff --git a/src/MockQueryable/MockQueryable/TestAsyncEnumerable.cs b/src/MockQueryable/MockQueryable/TestAsyncEnumerable.cs index e19e78c..6d7a87f 100644 --- a/src/MockQueryable/MockQueryable/TestAsyncEnumerable.cs +++ b/src/MockQueryable/MockQueryable/TestAsyncEnumerable.cs @@ -60,10 +60,9 @@ public TResult ExecuteAsync(Expression expression, CancellationToken ca { var expectedResultType = typeof(TResult).GetGenericArguments()[0]; var executionResult = typeof(IQueryProvider) - .GetMethods() - .Where(method => method.Name == nameof(IQueryProvider.Execute) && method.IsGenericMethod) - .First() - .MakeGenericMethod(expectedResultType) + .GetMethods() + .First(method => method.Name == nameof(IQueryProvider.Execute) && method.IsGenericMethod) + .MakeGenericMethod(expectedResultType) .Invoke(this, new[] {expression}); return (TResult) typeof(Task).GetMethod(nameof(Task.FromResult))