AzRUtil.Utility.EfExtender
10.2.0
dotnet add package AzRUtil.Utility.EfExtender --version 10.2.0
NuGet\Install-Package AzRUtil.Utility.EfExtender -Version 10.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AzRUtil.Utility.EfExtender" Version="10.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AzRUtil.Utility.EfExtender" Version="10.2.0" />
<PackageReference Include="AzRUtil.Utility.EfExtender" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AzRUtil.Utility.EfExtender --version 10.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AzRUtil.Utility.EfExtender, 10.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AzRUtil.Utility.EfExtender@10.2.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AzRUtil.Utility.EfExtender&version=10.2.0
#tool nuget:?package=AzRUtil.Utility.EfExtender&version=10.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AzRUtil.Utility.EfExtender
Entity Framework Core extensions with Unit of Work pattern, audit logging, and multi-database support.
?? Installation
dotnet add package AzRUtil.Utility.EfExtender
Or via Package Manager:
Install-Package AzRUtil.Utility.EfExtender
?? Target Framework
- .NET 10
? Features
- Unit of Work Pattern - Transaction coordination with DbContext
- Audit Logging - Automatic tracking of entity changes (Create/Update/Delete)
- Generic Repository - Base repository implementations
- Multi-Database Support - SQL Server, MySQL, PostgreSQL
- Identity Integration - ASP.NET Core Identity support
- Pluralization - Automatic table name pluralization
?? Dependencies
| Package | Version |
|---|---|
| AzRUtil.Utility | 10.1.0 |
| Microsoft.EntityFrameworkCore | 10.0.1 |
| Microsoft.EntityFrameworkCore.SqlServer | 10.0.1 |
| Microsoft.EntityFrameworkCore.Relational | 10.0.1 |
| Pomelo.EntityFrameworkCore.MySql | 9.0.0 |
| Npgsql.EntityFrameworkCore.PostgreSQL | 10.0.0 |
| Microsoft.AspNetCore.Identity.EntityFrameworkCore | 10.0.1 |
| Pluralize.NET.Core | 1.0.0 |
?? Quick Start
using AzRUtil.Utility.EfExtender;
// Unit of Work usage
public class MyService
{
private readonly IUnitOfWork _unitOfWork;
public MyService(IUnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
}
public async Task SaveDataAsync()
{
// Your changes with audit logging
await _unitOfWork.SaveChangesAsync();
}
}
Supported Databases
- SQL Server - Microsoft.EntityFrameworkCore.SqlServer
- MySQL/MariaDB - Pomelo.EntityFrameworkCore.MySql
- PostgreSQL - Npgsql.EntityFrameworkCore.PostgreSQL
?? Documentation
For full API documentation, visit: http://ashiquzzaman.me/project/AzRUtil.Extender
?? License
PROPRIETARY SOFTWARE - See LICENSE.txt
- ? You may use the compiled NuGet package
- ? You may NOT access, copy, or use source code
- ? No warranty or guarantee provided
- ? No liability accepted for any damages
?? Contact
For licensing inquiries: ashiquzzaman@outlook.com
� Ashiquzzaman. All Rights Reserved.
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- AzRUtil.Utility (>= 10.2.0)
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 10.0.1)
- Microsoft.EntityFrameworkCore (>= 10.0.1)
- Microsoft.EntityFrameworkCore.Relational (>= 10.0.1)
- Microsoft.EntityFrameworkCore.SqlServer (>= 10.0.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 10.0.0)
- Pluralize.NET.Core (>= 1.0.0)
- Pomelo.EntityFrameworkCore.MySql (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Entity Framework Core extensions with audit logging.