Encamina.Enmarcha.Data.EntityFramework
8.2.0
dotnet add package Encamina.Enmarcha.Data.EntityFramework --version 8.2.0
NuGet\Install-Package Encamina.Enmarcha.Data.EntityFramework -Version 8.2.0
<PackageReference Include="Encamina.Enmarcha.Data.EntityFramework" Version="8.2.0" />
paket add Encamina.Enmarcha.Data.EntityFramework --version 8.2.0
#r "nuget: Encamina.Enmarcha.Data.EntityFramework, 8.2.0"
// Install Encamina.Enmarcha.Data.EntityFramework as a Cake Addin #addin nuget:?package=Encamina.Enmarcha.Data.EntityFramework&version=8.2.0 // Install Encamina.Enmarcha.Data.EntityFramework as a Cake Tool #tool nuget:?package=Encamina.Enmarcha.Data.EntityFramework&version=8.2.0
Data - Entity Framework
Entity Framework Data project primarily contains Entity Framework implementations based on the abstractions provided by Encamina.Enmarcha.Data.Abstractions, as well as some other utilities related to Entity Framework.
Setup
Nuget package
First, install NuGet. Then, install Encamina.Enmarcha.Data.EntityFramework from the package manager console:
PM> Install-Package Encamina.Enmarcha.Data.EntityFramework
.NET CLI:
First, install .NET CLI. Then, install Encamina.Enmarcha.Data.EntityFramework from the .NET CLI:
dotnet add package Encamina.Enmarcha.Data.EntityFramework
How to use
In the following example, we will demonstrate how to configure and add an Entity Framework implementation of the IFullUnitOfWork interface to the ServiceCollection
, based on the FullUnitOfWork, using the following DbContext
.
public class Foo
{
public int Id { get; set; }
public string Text { get; set; }
}
public class Bar
{
public int Id { get; set; }
public string Text { get; set; }
}
public class MyDBContext : DbContext
{
public DbSet<Foo> Foos { get; set; }
public DbSet<Bar> Bars { get; set; }
}
The next step is to inherit from FullUnitOfWork
and create a custom class that receives an instance of MyDBContext
in its constructor.
public class MyFullUnitOfWork: FullUnitOfWork, IFullUnitOfWork
{
public MyFullUnitOfWork(MyDBContext dbContext)
: base(dbContext)
{
}
}
In the Program.cs
or a similar entry point file in your project, add the following code:
// Entry point
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
// ...
});
// ...
services.AddDbContext<DatabaseContext>(opt =>
{
opt.UseSqlServer(configuration.GetConnectionString("DefaultConnection")); // Configures your provider
}, ServiceLifetime.Scoped);
// ...
builder.Services.AddScoped<IFullUnitOfWork, MyFullUnitOfWork>();
And now, we can resolve the IFullUnitOfWork
interface with construction injection:
public class MyClass
{
private readonly IFullUnitOfWork uow;
public MyClass(IFullUnitOfWork uow)
{
this.uow = uow;
}
public async Task TestAddFooAndBarAndSaveAsync(CancellationToken cts)
{
var fooRepository = uow.GetAsyncRepository<Foo>();
var barRepository = uow.GetAsyncRepository<Bar>();
await fooRepository.AddAsync(new Foo() { Text = "Foo1" }, cts);
await fooRepository.AddAsync(new Foo() { Text = "Foo2" }, cts);
await barRepository.AddAsync(new Bar() { Text = "Bar1" }, cts);
await uow.SaveAsync(cts);
}
}
Within the NuGet package, there are more interfaces along with their corresponding base implementations.
- AsyncReadRepositoryBase<TEntity>: Base class for asynchronous read repositories. It implements IAsyncReadRepository<TEntity>.
- AsyncRepositoryBase<TEntity>: Base class for asynchronous repositories. It implements IAsyncRepository<TEntity>.
- AsyncUnitOfWorkBase: Base class for an asynchronous unit of work. It implements IAsyncUnitOfWork.
- AsyncWriteRepositoryBase<TEntity>: Base class for asynchronous write repositories. It implements IAsyncWriteRepository<TEntity>.
- FullRepositoryBase<TEntity>: Base class for a repository with both synchronous and asynchronous operations to read and write entities. It implements IFullRepository<TEntity>.
- FullUnitOfWork: Base class for a unit of work that can manage both synchronous and asynchronous operations. It implements IFullUnitOfWork.
- ReadRepositoryBase<TEntity>: Base class for a read repositories. It implements IReadRepository<TEntity>.
- RepositoryBase<TEntity>: Base class for a repositories. It implements IRepository<TEntity>.
- UnitOfWorkBase: Base class for an unit of work. It implements IUnitOfWork.
- WriteRepositoryBase<TEntity>: Base class for write repositories. It implements IWriteRepository<TEntity>.
Other functionalities
Inside the NuGet package, you will find some extension methods related to Entity Framework.
// ...
var queryableFoo = dbContext.AsQueryable<Foo>(withNoTracking: true, withIdentityResolution: true);
// More methods available in DbContextExtensions...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Encamina.Enmarcha.Data.Abstractions (>= 8.2.0)
- Microsoft.EntityFrameworkCore (>= 8.0.8)
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 |
---|---|---|
8.2.0 | 56 | 10/22/2024 |
8.2.0-preview-01-m01 | 91 | 9/17/2024 |
8.1.9-preview-02 | 65 | 10/22/2024 |
8.1.9-preview-01 | 55 | 10/4/2024 |
8.1.8 | 78 | 9/23/2024 |
8.1.8-preview-07 | 77 | 9/12/2024 |
8.1.8-preview-06 | 91 | 9/11/2024 |
8.1.8-preview-05 | 89 | 9/10/2024 |
8.1.8-preview-04 | 101 | 8/16/2024 |
8.1.8-preview-03 | 100 | 8/13/2024 |
8.1.8-preview-02 | 96 | 8/13/2024 |
8.1.8-preview-01 | 85 | 8/12/2024 |
8.1.7 | 93 | 8/7/2024 |
8.1.7-preview-09 | 106 | 7/3/2024 |
8.1.7-preview-08 | 88 | 7/2/2024 |
8.1.7-preview-07 | 87 | 6/10/2024 |
8.1.7-preview-06 | 79 | 6/10/2024 |
8.1.7-preview-05 | 95 | 6/6/2024 |
8.1.7-preview-04 | 89 | 6/6/2024 |
8.1.7-preview-03 | 83 | 5/24/2024 |
8.1.7-preview-02 | 93 | 5/10/2024 |
8.1.7-preview-01 | 86 | 5/8/2024 |
8.1.6 | 107 | 5/7/2024 |
8.1.6-preview-08 | 53 | 5/2/2024 |
8.1.6-preview-07 | 87 | 4/29/2024 |
8.1.6-preview-06 | 84 | 4/26/2024 |
8.1.6-preview-05 | 86 | 4/24/2024 |
8.1.6-preview-04 | 70 | 4/22/2024 |
8.1.6-preview-03 | 86 | 4/22/2024 |
8.1.6-preview-02 | 88 | 4/17/2024 |
8.1.6-preview-01 | 90 | 4/15/2024 |
8.1.5 | 122 | 4/15/2024 |
8.1.5-preview-15 | 84 | 4/10/2024 |
8.1.5-preview-14 | 92 | 3/20/2024 |
8.1.5-preview-13 | 78 | 3/18/2024 |
8.1.5-preview-12 | 103 | 3/13/2024 |
8.1.5-preview-11 | 88 | 3/13/2024 |
8.1.5-preview-10 | 84 | 3/13/2024 |
8.1.5-preview-09 | 90 | 3/12/2024 |
8.1.5-preview-08 | 86 | 3/12/2024 |
8.1.5-preview-07 | 91 | 3/8/2024 |
8.1.5-preview-06 | 66 | 3/8/2024 |
8.1.5-preview-05 | 83 | 3/7/2024 |
8.1.5-preview-04 | 92 | 3/7/2024 |
8.1.5-preview-03 | 84 | 3/7/2024 |
8.1.5-preview-02 | 100 | 2/28/2024 |
8.1.5-preview-01 | 79 | 2/19/2024 |
8.1.4 | 109 | 2/15/2024 |
8.1.3 | 105 | 2/13/2024 |
8.1.3-preview-07 | 75 | 2/13/2024 |
8.1.3-preview-06 | 88 | 2/12/2024 |
8.1.3-preview-05 | 101 | 2/9/2024 |
8.1.3-preview-04 | 93 | 2/8/2024 |
8.1.3-preview-03 | 87 | 2/7/2024 |
8.1.3-preview-02 | 87 | 2/2/2024 |
8.1.3-preview-01 | 83 | 2/2/2024 |
8.1.2 | 113 | 2/1/2024 |
8.1.2-preview-9 | 95 | 1/22/2024 |
8.1.2-preview-8 | 82 | 1/19/2024 |
8.1.2-preview-7 | 86 | 1/19/2024 |
8.1.2-preview-6 | 76 | 1/19/2024 |
8.1.2-preview-5 | 85 | 1/19/2024 |
8.1.2-preview-4 | 83 | 1/19/2024 |
8.1.2-preview-3 | 79 | 1/18/2024 |
8.1.2-preview-2 | 87 | 1/18/2024 |
8.1.2-preview-16 | 79 | 1/31/2024 |
8.1.2-preview-15 | 82 | 1/31/2024 |
8.1.2-preview-14 | 81 | 1/25/2024 |
8.1.2-preview-13 | 82 | 1/25/2024 |
8.1.2-preview-12 | 94 | 1/23/2024 |
8.1.2-preview-11 | 80 | 1/23/2024 |
8.1.2-preview-10 | 79 | 1/22/2024 |
8.1.2-preview-1 | 78 | 1/18/2024 |
8.1.1 | 122 | 1/18/2024 |
8.1.0 | 99 | 1/18/2024 |
8.0.3 | 159 | 12/29/2023 |
8.0.1 | 123 | 12/14/2023 |
8.0.0 | 131 | 12/7/2023 |
6.0.4.3 | 120 | 12/29/2023 |
6.0.4.2 | 111 | 12/20/2023 |
6.0.4.1 | 114 | 12/19/2023 |
6.0.4 | 138 | 12/4/2023 |
6.0.3.20 | 127 | 11/27/2023 |
6.0.3.19 | 138 | 11/22/2023 |