Rystem.RepositoryFramework.Infrastructure.EntityFramework 9.0.15

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 9.0.15                
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.EntityFramework -Version 9.0.15                
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="9.0.15" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 9.0.15                
#r "nuget: Rystem.RepositoryFramework.Infrastructure.EntityFramework, 9.0.15"                
#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=9.0.15

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

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 net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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
9.0.25 0 3/9/2025
9.0.21 153 3/6/2025
9.0.20 10,723 3/6/2025
9.0.19 152 3/6/2025
9.0.18 184 3/4/2025
9.0.17 84 3/1/2025
9.0.16 71 3/1/2025
9.0.15 75,411 2/22/2025
9.0.14 22,454 2/18/2025
9.0.13 95 2/9/2025
9.0.12 217,630 1/13/2025
9.0.11 23,937 1/9/2025
9.0.10 59 1/9/2025
9.0.9 3,940 1/7/2025
9.0.8 12,429 1/6/2025
9.0.7 81 1/6/2025
9.0.4 92,213 12/23/2024
9.0.3 92 12/22/2024
9.0.2 10,642 12/21/2024
9.0.1 1,139 12/21/2024
9.0.0 172,939 11/16/2024
9.0.0-rc.1 85 10/18/2024
6.2.0 219,005 10/9/2024
6.1.1 108 10/9/2024
6.1.0 47,847 9/29/2024
6.0.24 124 9/11/2024
6.0.23 122 7/18/2024
6.0.21 129 6/18/2024
6.0.20 123 6/16/2024
6.0.19 460 6/14/2024
6.0.18 113 6/14/2024
6.0.17 125 6/14/2024
6.0.16 127 6/10/2024
6.0.15 113 6/9/2024
6.0.14 128 5/24/2024
6.0.13 122 5/23/2024
6.0.12 128 5/23/2024
6.0.11 120 5/20/2024
6.0.9 124 5/20/2024
6.0.7 123 5/18/2024
6.0.6 114 5/10/2024
6.0.5 110 5/10/2024
6.0.4 137 4/3/2024
6.0.3 151 3/25/2024
6.0.2 200 3/11/2024
6.0.0 549 11/21/2023
6.0.0-rc.6 97 10/25/2023
6.0.0-rc.5 90 10/25/2023
6.0.0-rc.4 79 10/23/2023
6.0.0-rc.3 72 10/19/2023
6.0.0-rc.2 79 10/18/2023
6.0.0-rc.1 81 10/16/2023
5.0.20 571 9/25/2023
5.0.19 567 9/10/2023
5.0.18 552 9/6/2023
5.0.17 597 9/6/2023
5.0.16 584 9/5/2023
5.0.15 519 9/5/2023
5.0.14 578 9/5/2023
5.0.13 525 9/1/2023
5.0.12 567 8/31/2023
5.0.11 531 8/30/2023
5.0.10 570 8/29/2023
5.0.9 602 8/24/2023
5.0.8 539 8/24/2023
5.0.7 571 8/23/2023
5.0.6 588 8/21/2023
5.0.5 594 8/21/2023
5.0.4 608 8/16/2023
5.0.3 742 8/2/2023
5.0.2 691 8/2/2023
5.0.1 709 8/1/2023
5.0.0 744 7/31/2023
4.1.26 751 7/20/2023
4.1.25 709 7/16/2023
4.1.24 708 6/13/2023
4.1.23 724 6/13/2023
4.1.22 1,147 5/30/2023
4.1.21 692 5/20/2023
4.1.20 315,698 4/19/2023
4.1.19 95,590 3/20/2023
4.1.18 773 3/20/2023
4.1.17 784 3/16/2023
4.1.16 825 3/16/2023
4.1.15 777 3/15/2023
4.1.14 1,398 3/9/2023
4.1.13 844 3/7/2023
4.1.12 898 2/10/2023
4.1.11 860 1/26/2023
4.1.10 893 1/22/2023
4.1.9 829 1/20/2023
4.1.8 881 1/18/2023
4.1.7 850 1/18/2023
4.1.6 856 1/17/2023
4.1.1 912 1/4/2023
4.1.0 888 1/1/2023
3.1.5 892 12/21/2022
3.1.3 869 12/12/2022
3.1.2 897 12/7/2022
3.1.1 866 12/7/2022
3.1.0 920 12/2/2022
3.0.29 913 12/1/2022
3.0.28 887 12/1/2022
3.0.27 868 11/23/2022
3.0.25 899 11/23/2022
3.0.24 903 11/18/2022
3.0.23 883 11/18/2022
3.0.22 927 11/15/2022
3.0.21 931 11/14/2022
3.0.20 946 11/13/2022
3.0.19 1,068 11/2/2022
3.0.18 871 11/2/2022
3.0.17 936 10/29/2022
3.0.16 997 10/29/2022
3.0.15 959 10/29/2022
3.0.14 939 10/29/2022
3.0.13 924 10/24/2022
3.0.12 996 10/17/2022