From 52f7fa6aee3418c5c2003d1f6b8e5dba6559c886 Mon Sep 17 00:00:00 2001 From: Rungwiroon Komalitipong Date: Tue, 12 Dec 2023 02:33:06 +0700 Subject: [PATCH] Release new preview of Codehard.Infrastructure.EntityFramework nuget --- .../Codehard.Infrastructure.EntityFramework.csproj | 2 +- .../EntityFrameworkRepositoryBase.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/Codehard.Infrastructure.EntityFramework.csproj b/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/Codehard.Infrastructure.EntityFramework.csproj index 8e5c815..c77224f 100644 --- a/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/Codehard.Infrastructure.EntityFramework.csproj +++ b/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/Codehard.Infrastructure.EntityFramework.csproj @@ -4,7 +4,7 @@ net6.0 enable enable - 3.0.0-preview-3 + 3.0.0-preview-4 A library contains common code related to Entity Framework Core. https://github.com/codehardth/Codehard.Common https://github.com/codehardth/Codehard.Common diff --git a/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/EntityFrameworkRepositoryBase.cs b/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/EntityFrameworkRepositoryBase.cs index 45f54db..0bea9c8 100644 --- a/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/EntityFrameworkRepositoryBase.cs +++ b/src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/EntityFrameworkRepositoryBase.cs @@ -54,7 +54,7 @@ public async IAsyncEnumerable QueryAsync( var source = query.AsAsyncEnumerable() - .WithCancellation(cancellationToken); + .WithCancellation(cancellationToken); await foreach (var e in source) {