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

Commit f9f9bd3

Browse files
authored
Merge pull request #126 from linq2db/version3
Release 3.10.0
2 parents 64acb21 + d922ff1 commit f9f9bd3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Build/linq2db.Default.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>3.9.6</Version>
3+
<Version>3.10.0</Version>
44

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

NuGet/linq2db.EntityFrameworkCore.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Linq to DB (linq2db) extensions for Entity Framework Core 3.1</title>
66
<authors>Igor Tkachev, Ilya Chudin, Svyatoslav Danyliv, Dmitry Lukashenko</authors>
77
<owners>Igor Tkachev, Ilya Chudin, Svyatoslav Danyliv, Dmitry Lukashenko</owners>
8-
<copyright>Copyright © 2020 Igor Tkachev, Ilya Chudin, Svyatoslav Danyliv, Dmitry Lukashenko</copyright>
8+
<copyright>Copyright © 2020-2021 Igor Tkachev, Ilya Chudin, Svyatoslav Danyliv, Dmitry Lukashenko</copyright>
99
<description>Allows to execute Linq to DB (linq2db) queries in Entity Framework Core DbContext.</description>
1010
<summary />
1111
<tags>linq linq2db LinqToDB ORM database entity-framework-core EntityFrameworkCore EFCore DB SQL SqlServer SqlCe SqlServerCe MySql Firebird SQLite Oracle ODP PostgreSQL DB2</tags>
@@ -16,7 +16,7 @@
1616
<dependencies>
1717
<group targetFramework=".NETStandard2.0">
1818
<dependency id="Microsoft.EntityFrameworkCore.Relational" version="3.1.10" />
19-
<dependency id="linq2db" version="3.2.3" />
19+
<dependency id="linq2db" version="3.3.0" />
2020
</group>
2121
</dependencies>
2222
</metadata>

Source/LinqToDB.EntityFrameworkCore/Internal/LinqToDBForEFQueryProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ public TResult Execute<TResult>(Expression expression)
9191
/// </summary>
9292
/// <typeparam name="TResult">Type of result element.</typeparam>
9393
/// <param name="expression">Query expression.</param>
94-
/// <param name="token">Cancellation token.</param>
94+
/// <param name="cancellationToken">Cancellation token.</param>
9595
/// <returns>Query result as <see cref="IAsyncEnumerable{T}"/>.</returns>
96-
public Task<IAsyncEnumerable<TResult>> ExecuteAsyncEnumerable<TResult>(Expression expression, CancellationToken token)
96+
public Task<IAsyncEnumerable<TResult>> ExecuteAsyncEnumerable<TResult>(Expression expression, CancellationToken cancellationToken)
9797
{
98-
return QueryProvider.ExecuteAsyncEnumerable<TResult>(expression, token);
98+
return QueryProvider.ExecuteAsyncEnumerable<TResult>(expression, cancellationToken);
9999
}
100100

101101
/// <summary>

Source/LinqToDB.EntityFrameworkCore/linq2db.EntityFrameworkCore.csproj

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

1919
<ItemGroup>
20-
<PackageReference Include="linq2db" Version="3.2.3" />
20+
<PackageReference Include="linq2db" Version="3.3.0" />
2121
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.11" />
2222
</ItemGroup>
2323

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
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: 3.9.6
5-
nugetVersion: 3.9.6
4+
assemblyVersion: 3.10.0
5+
nugetVersion: 3.10.0
66
artifact_nugets: 'nugets'
77

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

0 commit comments

Comments
 (0)