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" />
                    
Directory.Packages.props
<PackageReference Include="AzRUtil.Utility.EfExtender" />
                    
Project file
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
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=AzRUtil.Utility.EfExtender&version=10.2.0
                    
Install as a Cake Tool

AzRUtil.Utility.EfExtender

Entity Framework Core extensions with Unit of Work pattern, audit logging, and multi-database support.

NuGet Version License

?? 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 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.2.0 87 1/8/2026
10.1.0 91 1/2/2026
8.0.2 266 3/10/2024
8.0.1 206 3/2/2024
7.0.1 346 3/27/2023
6.1.5 419 1/14/2023
6.1.1 624 8/22/2022
6.1.0 596 8/14/2022

Entity Framework Core extensions with audit logging.