Encamina.Enmarcha.Data.EntityFramework 8.1.6

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Encamina.Enmarcha.Data.EntityFramework --version 8.1.6
NuGet\Install-Package Encamina.Enmarcha.Data.EntityFramework -Version 8.1.6
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="Encamina.Enmarcha.Data.EntityFramework" Version="8.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Encamina.Enmarcha.Data.EntityFramework --version 8.1.6
#r "nuget: Encamina.Enmarcha.Data.EntityFramework, 8.1.6"
#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.
// Install Encamina.Enmarcha.Data.EntityFramework as a Cake Addin
#addin nuget:?package=Encamina.Enmarcha.Data.EntityFramework&version=8.1.6

// Install Encamina.Enmarcha.Data.EntityFramework as a Cake Tool
#tool nuget:?package=Encamina.Enmarcha.Data.EntityFramework&version=8.1.6

Data - Entity Framework

Nuget package

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.

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 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. 
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
8.1.7-preview-02 72 5/10/2024
8.1.7-preview-01 65 5/8/2024
8.1.6 76 5/7/2024
8.1.6-preview-08 30 5/2/2024
8.1.6-preview-07 57 4/29/2024
8.1.6-preview-06 67 4/26/2024
8.1.6-preview-05 63 4/24/2024
8.1.6-preview-04 51 4/22/2024
8.1.6-preview-03 65 4/22/2024
8.1.6-preview-02 67 4/17/2024
8.1.6-preview-01 58 4/15/2024
8.1.5 86 4/15/2024
8.1.5-preview-15 60 4/10/2024
8.1.5-preview-14 75 3/20/2024
8.1.5-preview-13 59 3/18/2024
8.1.5-preview-12 83 3/13/2024
8.1.5-preview-11 71 3/13/2024
8.1.5-preview-10 63 3/13/2024
8.1.5-preview-09 73 3/12/2024
8.1.5-preview-08 63 3/12/2024
8.1.5-preview-07 72 3/8/2024
8.1.5-preview-06 49 3/8/2024
8.1.5-preview-05 68 3/7/2024
8.1.5-preview-04 58 3/7/2024
8.1.5-preview-03 69 3/7/2024
8.1.5-preview-02 82 2/28/2024
8.1.5-preview-01 63 2/19/2024
8.1.4 86 2/15/2024
8.1.3 83 2/13/2024
8.1.3-preview-07 55 2/13/2024
8.1.3-preview-06 70 2/12/2024
8.1.3-preview-05 79 2/9/2024
8.1.3-preview-04 73 2/8/2024
8.1.3-preview-03 68 2/7/2024
8.1.3-preview-02 64 2/2/2024
8.1.3-preview-01 61 2/2/2024
8.1.2 91 2/1/2024
8.1.2-preview-9 75 1/22/2024
8.1.2-preview-8 63 1/19/2024
8.1.2-preview-7 64 1/19/2024
8.1.2-preview-6 57 1/19/2024
8.1.2-preview-5 61 1/19/2024
8.1.2-preview-4 63 1/19/2024
8.1.2-preview-3 61 1/18/2024
8.1.2-preview-2 62 1/18/2024
8.1.2-preview-16 62 1/31/2024
8.1.2-preview-15 62 1/31/2024
8.1.2-preview-14 62 1/25/2024
8.1.2-preview-13 63 1/25/2024
8.1.2-preview-12 56 1/23/2024
8.1.2-preview-11 62 1/23/2024
8.1.2-preview-10 61 1/22/2024
8.1.2-preview-1 59 1/18/2024
8.1.1 96 1/18/2024
8.1.0 79 1/18/2024
8.0.3 140 12/29/2023
8.0.1 100 12/14/2023
8.0.0 115 12/7/2023
6.0.4.3 97 12/29/2023
6.0.4.2 92 12/20/2023
6.0.4.1 97 12/19/2023
6.0.4 116 12/4/2023
6.0.3.20 108 11/27/2023
6.0.3.19 103 11/22/2023