EntityFrameworkCore.PersistenceApi
1.1.0
See the version list below for details.
dotnet add package EntityFrameworkCore.PersistenceApi --version 1.1.0
NuGet\Install-Package EntityFrameworkCore.PersistenceApi -Version 1.1.0
<PackageReference Include="EntityFrameworkCore.PersistenceApi" Version="1.1.0" />
paket add EntityFrameworkCore.PersistenceApi --version 1.1.0
#r "nuget: EntityFrameworkCore.PersistenceApi, 1.1.0"
// Install EntityFrameworkCore.PersistenceApi as a Cake Addin #addin nuget:?package=EntityFrameworkCore.PersistenceApi&version=1.1.0 // Install EntityFrameworkCore.PersistenceApi as a Cake Tool #tool nuget:?package=EntityFrameworkCore.PersistenceApi&version=1.1.0
Entity Framework Autowired Repository with Unit of Work pattern
Creating a repository interface and implementing a class is a really boring and annoying work.
When I saw JpaRepository in Java world, I wondered if there's a similar implmentation of JpaRepository
in .NET side. I, however, couldn't find anything.
This library will liberate you from this annoying task.
How To Use
1. Your DbContext should have IEpaDbContext and you can define your DbSet property as usual.
public ApplicationDbContext : DbContext, IEpaDbContext
{
DbSet<Order> Orders { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
...
}
}
2. Add the dependency injection in the Program.cs
var connectionString = builder.Configuration.GetConnectionString("DefaultConnection");
builder.Services.AddDbContext<ApplicationDbContext>(options => options.UseSqlServer(connectionString));
// Below dependency injection is required.
builder.Services.AddScoped<IEpaDbContext, ApplicationDbContext>();
builder.Services.AddScoped<IUnitOfWork, UnitOfWork>();
3. Define a interface inheriting IEpaRepository interface.
public interface IOrderRepository : IEpaRepository<Order, Guid>
{
}
4. That's it. No interface implementation. Just get the repository and use it
public class IndexModel : PageModel
{
private readonly IUnitOfWork _unitOfWork;
public IReadOnlyCollection<Order> Orders;
public IndexModel(IUnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
}
public async Task OnGetAsync()
{
var orderRepository = _unitOfWork.GetRepository<IOrderRepository>();
Orders = await orderRepository.GetAsync();
}
}
Please see the WebApplication project for the demo.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Castle.Core (>= 5.1.1)
- Microsoft.EntityFrameworkCore (>= 6.0.14)
- System.Linq.Dynamic.Core (>= 1.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.