Fligoo.Framework.Core.DbContextScope
1.3.0
dotnet add package Fligoo.Framework.Core.DbContextScope --version 1.3.0
NuGet\Install-Package Fligoo.Framework.Core.DbContextScope -Version 1.3.0
<PackageReference Include="Fligoo.Framework.Core.DbContextScope" Version="1.3.0" />
<PackageVersion Include="Fligoo.Framework.Core.DbContextScope" Version="1.3.0" />
<PackageReference Include="Fligoo.Framework.Core.DbContextScope" />
paket add Fligoo.Framework.Core.DbContextScope --version 1.3.0
#r "nuget: Fligoo.Framework.Core.DbContextScope, 1.3.0"
#:package Fligoo.Framework.Core.DbContextScope@1.3.0
#addin nuget:?package=Fligoo.Framework.Core.DbContextScope&version=1.3.0
#tool nuget:?package=Fligoo.Framework.Core.DbContextScope&version=1.3.0
DbContext scope management for Fligoo Framework
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Fligoo.Framework.Core.Base.BusinessObjects (>= 1.2.0)
- Fligoo.Framework.Core.Base.Model (>= 1.2.0)
- Fligoo.Framework.Core.DataContracts (>= 1.3.0)
- Fligoo.Framework.Core.Helpers (>= 1.2.0)
- Microsoft.EntityFrameworkCore (>= 10.0.12)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.12)
- MySql.Data (>= 9.7.0)
- Oracle.ManagedDataAccess.Core (>= 23.26.200)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Technical changes in 1.3.0: added async repository members (GetByIdAsync, GetAllAsync, GetByFilterAsync, CountAsync, GetMaxAsync, GetMinAsync, MarkAsDeletedAsync) alongside the existing sync API; added IAsyncDisposable support to IDbContextScope/IDbContextReadOnlyScope so scopes can be used with 'await using'; fixed DbContextCollection.CommitAsync to commit explicit transactions asynchronously instead of blocking; bumped Microsoft.EntityFrameworkCore(.Relational) to 10.0.12 to align with net10.0; fixed a bug where LookUpBaseRepository.GetConsequencesFor/GetAllConsequencesFor and the underlying LookUpTable.GetConsequencesFor/LookUpBufferTable.GetBufferConsequencesFor disposed the ambient DbContext they were passed instead of the DbContextScope that owns it, which could cause ObjectDisposedException on later use of the same scope; added LookUpTable/LookUpBufferTable.UpdateAsync/DeleteAsync (built on EF Core's FindAsync and the existing MarkAsDeletedAsync) and wired them up as ILookUpRepository/ILookUpBufferRepository.UpdateAsync/DeleteAsync on LookUpBaseRepository/LookUpBaseBufferRepository.