EFGenericUnitOfWork 1.0.20
dotnet add package EFGenericUnitOfWork --version 1.0.20
NuGet\Install-Package EFGenericUnitOfWork -Version 1.0.20
<PackageReference Include="EFGenericUnitOfWork" Version="1.0.20" />
paket add EFGenericUnitOfWork --version 1.0.20
#r "nuget: EFGenericUnitOfWork, 1.0.20"
// Install EFGenericUnitOfWork as a Cake Addin #addin nuget:?package=EFGenericUnitOfWork&version=1.0.20 // Install EFGenericUnitOfWork as a Cake Tool #tool nuget:?package=EFGenericUnitOfWork&version=1.0.20
program.cs dosyasına eklenecekler örnek
builder.Services.AddScoped<IUnitOfWork, UnitOfWork<BaseDbContext>>(); builder.Services.AddDbContext<BaseDbContext>(options ⇒ options.UseSqlServer(builder.Configuration.GetConnectionString("MsSqlTallyGoDb")));
//IdentityUser Kullanımına Örnek Olarak Eklenecektir Şayet Kullanılmıyorsa Eklenmesine Gerek Yoktur. builder.Services.AddIdentity<Kullanicilar, AppRole>(opt ⇒ { opt.Password.RequireNonAlphanumeric = true; opt.Password.RequireDigit = true;
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net9.0
- Microsoft.EntityFrameworkCore.Abstractions (>= 9.0.1)
- Microsoft.EntityFrameworkCore.SqlServer (>= 9.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EFGenericUnitOfWork:
Package | Downloads |
---|---|
EmfGlobalCaching
A global caching library with support for MediatR, Memory Caching, and Redis Caching, enhancing performance and scalability. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.0.20 | 28 | 1/30/2025 | |
1.0.19 | 119 | 9/9/2024 | |
1.0.18 | 167 | 7/12/2024 | |
1.0.17 | 99 | 7/11/2024 | |
1.0.16 | 90 | 7/11/2024 | |
1.0.14 | 100 | 7/11/2024 | |
1.0.13 | 103 | 7/11/2024 | |
1.0.12 | 106 | 7/9/2024 | |
1.0.11 | 104 | 7/9/2024 | |
1.0.10 | 110 | 7/6/2024 | |
1.0.9 | 123 | 7/6/2024 | |
1.0.8 | 99 | 7/6/2024 | |
1.0.7 | 103 | 7/6/2024 | |
1.0.6 | 107 | 7/6/2024 | |
1.0.5 | 99 | 7/6/2024 | |
1.0.4 | 118 | 7/2/2024 | |
1.0.3 | 115 | 7/1/2024 | |
1.0.1 | 123 | 7/1/2024 | |
1.0.0 | 116 | 7/1/2024 |
Initial release with support for Entity Framework Core, Repository Pattern, UnitOfWork Pattern, SoftDelete functionality, paging, and synchronous/asynchronous support.