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

Commit 94d0786

Browse files
authored
Merge pull request #125 from linq2db/master
Release 5.2.0
2 parents c00e44a + 4bb54da commit 94d0786

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>5.1.6</Version>
3+
<Version>5.2.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</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.1">
1818
<dependency id="Microsoft.EntityFrameworkCore.Relational" version="5.0.2" />
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
@@ -89,11 +89,11 @@ public TResult Execute<TResult>(Expression expression)
8989
/// </summary>
9090
/// <typeparam name="TResult">Type of result element.</typeparam>
9191
/// <param name="expression">Query expression.</param>
92-
/// <param name="token">Cancellation token.</param>
92+
/// <param name="cancellationToken">Cancellation token.</param>
9393
/// <returns>Query result as <see cref="IAsyncEnumerable{T}"/>.</returns>
94-
public Task<IAsyncEnumerable<TResult>> ExecuteAsyncEnumerable<TResult>(Expression expression, CancellationToken token)
94+
public Task<IAsyncEnumerable<TResult>> ExecuteAsyncEnumerable<TResult>(Expression expression, CancellationToken cancellationToken)
9595
{
96-
return QueryProvider.ExecuteAsyncEnumerable<TResult>(expression, token);
96+
return QueryProvider.ExecuteAsyncEnumerable<TResult>(expression, cancellationToken);
9797
}
9898

9999
/// <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="5.0.2" />
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: 5.1.6
5-
nugetVersion: 5.1.6
4+
assemblyVersion: 5.2.0
5+
nugetVersion: 5.2.0
66
artifact_nugets: 'nugets'
77

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

0 commit comments

Comments
 (0)