Skip to content

Commit d998afb

Browse files
committed
Updated to EF 8.0.2
1 parent e05eb0f commit d998afb

File tree

17 files changed

+25
-24
lines changed

17 files changed

+25
-24
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Copyright>(c) $([System.DateTime]::Now.Year), Pawel Gerr. All rights reserved.</Copyright>
5-
<VersionPrefix>8.1.0</VersionPrefix>
5+
<VersionPrefix>8.1.1</VersionPrefix>
66
<Authors>Pawel Gerr</Authors>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<PackageProjectUrl>https://dev.azure.com/pawelgerr/Thinktecture.EntityFrameworkCore</PackageProjectUrl>

samples/Thinktecture.EntityFrameworkCore.Benchmarks/Thinktecture.EntityFrameworkCore.Benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="BenchmarkDotNet" Version="0.13.10" />
15+
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
1616
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
1717
</ItemGroup>
1818

samples/Thinktecture.EntityFrameworkCore.SqlServer.Samples/Thinktecture.EntityFrameworkCore.SqlServer.Samples.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" PrivateAssets="all" />
20+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2" PrivateAssets="all" />
2121
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
2222
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
2323
</ItemGroup>

samples/Thinktecture.EntityFrameworkCore.Sqlite.Samples/Thinktecture.EntityFrameworkCore.Sqlite.Samples.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" PrivateAssets="all" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2" PrivateAssets="all" />
1717
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
1818
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
1919
</ItemGroup>

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.SourceLink.AzureRepos.Git" Version="1.1.1" PrivateAssets="all" />
21+
<PackageReference Include="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0" PrivateAssets="all" />
2222
</ItemGroup>
2323

2424
</Project>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<ItemGroup>
4-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
5-
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="8.0.0" />
4+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2" />
5+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="8.0.2" />
66
</ItemGroup>
77

88
</Project>

src/Thinktecture.EntityFrameworkCore.SqlServer/EntityFrameworkCore/Query/ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitor
1717
public ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitor(
1818
QueryableMethodTranslatingExpressionVisitorDependencies dependencies,
1919
RelationalQueryableMethodTranslatingExpressionVisitorDependencies relationalDependencies,
20-
QueryCompilationContext queryCompilationContext,
20+
SqlServerQueryCompilationContext queryCompilationContext,
2121
ISqlServerSingletonOptions sqlServerSingletonOptions)
2222
: base(dependencies, relationalDependencies, queryCompilationContext, sqlServerSingletonOptions)
2323
{

src/Thinktecture.EntityFrameworkCore.SqlServer/EntityFrameworkCore/Query/ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitorFactory.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Diagnostics.CodeAnalysis;
22
using Microsoft.EntityFrameworkCore.Query;
33
using Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal;
4+
using Microsoft.EntityFrameworkCore.SqlServer.Query.Internal;
45

56
namespace Thinktecture.EntityFrameworkCore.Query;
67

@@ -34,6 +35,6 @@ public ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitorFactory(
3435
/// <inheritdoc />
3536
public QueryableMethodTranslatingExpressionVisitor Create(QueryCompilationContext queryCompilationContext)
3637
{
37-
return new ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitor(_dependencies, _relationalDependencies, queryCompilationContext, _sqlServerSingletonOptions);
38+
return new ThinktectureSqlServerQueryableMethodTranslatingExpressionVisitor(_dependencies, _relationalDependencies, (SqlServerQueryCompilationContext)queryCompilationContext, _sqlServerSingletonOptions);
3839
}
3940
}

src/Thinktecture.EntityFrameworkCore.SqlServer/Thinktecture.EntityFrameworkCore.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</ItemGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
8+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
99
</ItemGroup>
1010

1111
</Project>

src/Thinktecture.EntityFrameworkCore.Sqlite/Thinktecture.EntityFrameworkCore.Sqlite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</ItemGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
8+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2" />
99
</ItemGroup>
1010

1111
</Project>

src/Thinktecture.EntityFrameworkCore.Testing/Thinktecture.EntityFrameworkCore.Testing.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<ItemGroup>
4-
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
4+
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
55
<PackageReference Include="Serilog.Sinks.XUnit" Version="3.0.5" />
66
</ItemGroup>
77

tests/Directory.Build.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
<PropertyGroup>
44
<ParentPropsFile>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))</ParentPropsFile>
55
<IsPackable>false</IsPackable>
6-
<NoWarn>$(NoWarn);CA1062;EF1002</NoWarn>
6+
<NoWarn>$(NoWarn);CA1062;EF1002;xUnit1041</NoWarn>
77
</PropertyGroup>
88

99
<Import Condition="exists('$(ParentPropsFile)') " Project="$(ParentPropsFile)" />
1010

1111
<ItemGroup>
1212
<PackageReference Include="FluentAssertions" Version="6.12.0" />
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1414
<PackageReference Include="NSubstitute" Version="5.1.0" />
15-
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
15+
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
1616
<PackageReference Include="Serilog.Sinks.XUnit" Version="3.0.5" />
17-
<PackageReference Include="xunit" Version="2.6.1" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" PrivateAssets="all" />
17+
<PackageReference Include="xunit" Version="2.6.6" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6" PrivateAssets="all" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

tests/Thinktecture.EntityFrameworkCore.BulkOperations.Tests/Thinktecture.EntityFrameworkCore.BulkOperations.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2" />
1313
</ItemGroup>
1414

1515
</Project>

tests/Thinktecture.EntityFrameworkCore.SqlServer.Tests/Thinktecture.EntityFrameworkCore.SqlServer.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" PrivateAssets="all" />
8+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2" PrivateAssets="all" />
99
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
1010
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
11-
<PackageReference Include="Testcontainers.MsSql" Version="3.6.0" />
11+
<PackageReference Include="Testcontainers.MsSql" Version="3.7.0" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

tests/Thinktecture.EntityFrameworkCore.Sqlite.Tests/Thinktecture.EntityFrameworkCore.Sqlite.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" PrivateAssets="all" />
8+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2" PrivateAssets="all" />
99
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
1010
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
1111
<PackageReference Include="Xunit.Extensions.AssemblyFixture" Version="2.4.1" />

tests/Thinktecture.EntityFrameworkCore.TestHelpers/Thinktecture.EntityFrameworkCore.TestHelpers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2" />
1010
</ItemGroup>
1111

1212
</Project>

tests/Thinktecture.EntityFrameworkCore.Testing.Tests/Thinktecture.EntityFrameworkCore.Testing.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

0 commit comments

Comments
 (0)