Rystem.RepositoryFramework.Infrastructure.EntityFramework 6.0.4

dotnet add package Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 6.0.4
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.EntityFramework -Version 6.0.4
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="Rystem.RepositoryFramework.Infrastructure.EntityFramework" Version="6.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 6.0.4
#r "nuget: Rystem.RepositoryFramework.Infrastructure.EntityFramework, 6.0.4"
#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 Rystem.RepositoryFramework.Infrastructure.EntityFramework as a Cake Addin
#addin nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=6.0.4

// Install Rystem.RepositoryFramework.Infrastructure.EntityFramework as a Cake Tool
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=6.0.4

What is Rystem?

Integration with Entity Framework and Repository Framework

Example from unit test with a business integration too.

 services.AddDbContext<SampleContext>(options =>
        {
            options.UseSqlServer(configuration["ConnectionString:Database"]);
        }, ServiceLifetime.Scoped);

services
    .AddRepository<MappingUser, int>(builder =>
    {
        builder.WithEntityFramework<MappingUser, int, User, SampleContext>(
            t =>
            {
                t.DbSet = x => x.Users;
                t.References = x => x.Include(x => x.IdGruppos);
            });
        builder.Translate<User>()
            .With(x => x.Username, x => x.Nome)
            .With(x => x.Username, x => x.Cognome)
            .With(x => x.Email, x => x.IndirizzoElettronico)
            .With(x => x.Groups, x => x.IdGruppos)
            .With(x => x.Id, x => x.Identificativo)
            .WithKey(x => x, x => x.Identificativo);
        builder
            .AddBusiness()
                .AddBusinessBeforeInsert<MappingUserBeforeInsertBusiness>()
                .AddBusinessBeforeInsert<MappingUserBeforeInsertBusiness2>();
    });

You found the IRepository<MappingUser, int> in DI to play with it.

Automated api with Rystem.RepositoryFramework.Api.Server package

With automated api, you may have the api implemented with your dataverse integration. You need only to add the AddApiFromRepositoryFramework and UseApiForRepositoryFramework

 builder.Services.AddApiFromRepositoryFramework()
    .WithDescriptiveName("Repository Api")
    .WithPath(Path)
    .WithSwagger()
    .WithVersion(Version)
    .WithDocumentation()
    .WithDefaultCors("http://example.com");  

var app = builder.Build();

app.UseApiFromRepositoryFramework()
    .WithNoAuthorization();
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
6.0.4 98 4/3/2024
6.0.3 113 3/25/2024
6.0.2 160 3/11/2024
6.0.0 508 11/21/2023
6.0.0-rc.6 78 10/25/2023
6.0.0-rc.5 65 10/25/2023
6.0.0-rc.4 58 10/23/2023
6.0.0-rc.3 52 10/19/2023
6.0.0-rc.2 59 10/18/2023
6.0.0-rc.1 60 10/16/2023
5.0.20 534 9/25/2023
5.0.19 531 9/10/2023
5.0.18 515 9/6/2023
5.0.17 554 9/6/2023
5.0.16 547 9/5/2023
5.0.15 478 9/5/2023
5.0.14 532 9/5/2023
5.0.13 489 9/1/2023
5.0.12 532 8/31/2023
5.0.11 496 8/30/2023
5.0.10 533 8/29/2023
5.0.9 538 8/24/2023
5.0.8 503 8/24/2023
5.0.7 541 8/23/2023
5.0.6 552 8/21/2023
5.0.5 563 8/21/2023
5.0.4 575 8/16/2023
5.0.3 709 8/2/2023
5.0.2 660 8/2/2023
5.0.1 673 8/1/2023
5.0.0 708 7/31/2023
4.1.26 712 7/20/2023
4.1.25 668 7/16/2023
4.1.24 670 6/13/2023
4.1.23 675 6/13/2023
4.1.22 989 5/30/2023
4.1.21 654 5/20/2023
4.1.20 315,656 4/19/2023
4.1.19 95,549 3/20/2023
4.1.18 738 3/20/2023
4.1.17 750 3/16/2023
4.1.16 785 3/16/2023
4.1.15 743 3/15/2023
4.1.14 1,361 3/9/2023
4.1.13 809 3/7/2023
4.1.12 857 2/10/2023
4.1.11 819 1/26/2023
4.1.10 857 1/22/2023
4.1.9 791 1/20/2023
4.1.8 842 1/18/2023
4.1.7 809 1/18/2023
4.1.6 814 1/17/2023
4.1.1 867 1/4/2023
4.1.0 844 1/1/2023
3.1.5 851 12/21/2022
3.1.3 831 12/12/2022
3.1.2 854 12/7/2022
3.1.1 827 12/7/2022
3.1.0 876 12/2/2022
3.0.29 865 12/1/2022
3.0.28 846 12/1/2022
3.0.27 821 11/23/2022
3.0.25 855 11/23/2022
3.0.24 859 11/18/2022
3.0.23 844 11/18/2022
3.0.22 879 11/15/2022
3.0.21 889 11/14/2022
3.0.20 904 11/13/2022
3.0.19 1,027 11/2/2022
3.0.18 832 11/2/2022
3.0.17 894 10/29/2022
3.0.16 954 10/29/2022
3.0.15 913 10/29/2022
3.0.14 892 10/29/2022
3.0.13 878 10/24/2022
3.0.12 943 10/17/2022