Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit 525c1c7

Browse files
authored
update to linq2db 4.4.0, fix sql server compatibility (#283)
1 parent da9d70c commit 525c1c7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Build/linq2db.Default.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>2.8.0</Version>
3+
<Version>2.9.0</Version>
44

55
<Authors>Svyatoslav Danyliv, Igor Tkachev, Dmitry Lukashenko, Ilya Chudin</Authors>
66
<Product>Linq to DB</Product>

Directory.Packages.props

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project>
22
<ItemGroup>
33
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
4-
<PackageVersion Include="NUnit3TestAdapter" Version="4.3.0" />
4+
<PackageVersion Include="NUnit3TestAdapter" Version="4.3.1" />
55
<PackageVersion Include="NUnit" Version="3.13.3" />
66
<PackageVersion Include="FluentAssertions" Version="6.8.0" />
77

8-
<PackageVersion Include="linq2db" Version="4.3.0" />
9-
<PackageVersion Include="linq2db.Tools" Version="4.3.0" />
8+
<PackageVersion Include="linq2db" Version="4.4.0" />
9+
<PackageVersion Include="linq2db.Tools" Version="4.4.0" />
1010

1111
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
12-
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
12+
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" />
1313
<PackageVersion Include="System.Interactive.Async" Version="3.2.0"/>
1414

1515
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="2.2.6" />

NuGet/linq2db.EntityFrameworkCore.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<license type="file">MIT-LICENSE.txt</license>
1616
<dependencies>
1717
<group targetFramework=".NETStandard2.0">
18-
<dependency id="linq2db" version="4.3.0" />
18+
<dependency id="linq2db" version="4.4.0" />
1919
<dependency id="Microsoft.EntityFrameworkCore.Relational" version="2.2.6" />
20-
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0" />
20+
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="7.0.0" />
2121
<dependency id="System.Interactive.Async" version="3.2.0" />
2222
</group>
2323
</dependencies>

Source/LinqToDB.EntityFrameworkCore/LinqToDBForEFToolsImplDefault.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ protected virtual IDataProvider CreateLinqToDbDataProvider(EFProviderInfo provid
339339
protected virtual IDataProvider CreateSqlServerProvider(SqlServerVersion version, string? connectionString)
340340
{
341341
if (!string.IsNullOrEmpty(connectionString))
342-
return DataConnection.GetDataProvider("Microsoft.Data.SqlClient", connectionString!)!;
342+
return DataConnection.GetDataProvider("System.Data.SqlClient", connectionString!)!;
343343

344344
return DataProvider.SqlServer.SqlServerTools.GetDataProvider(version, SqlServerProvider.MicrosoftDataSqlClient);
345345
}

azure-pipelines.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
variables:
22
solution: 'linq2db.EFCore.sln'
33
build_configuration: 'Release'
4-
assemblyVersion: 2.8.0
5-
nugetVersion: 2.8.0
4+
assemblyVersion: 2.9.0
5+
nugetVersion: 2.9.0
66
artifact_nugets: 'nugets'
77

88
# build on commits to important branches (master + release branches):

0 commit comments

Comments
 (0)