Rystem.RepositoryFramework.Infrastructure.EntityFramework 4.1.13

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 4.1.13
                    
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.EntityFramework -Version 4.1.13
                    
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="4.1.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Infrastructure.EntityFramework" Version="4.1.13" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Infrastructure.EntityFramework" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 4.1.13
                    
#r "nuget: Rystem.RepositoryFramework.Infrastructure.EntityFramework, 4.1.13"
                    
#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.
#addin nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=4.1.13
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=4.1.13
                    
Install as a Cake Tool

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>(x =>
    {
        x.WithEntityFramework<MappingUser, int, User, SampleContext>(
            t =>
            {
                t.DbSet = x => x.Users;
                t.References = x => x.Include(x => x.IdGruppos);
            });
        x.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);
        x
            .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.UseApiForRepositoryFramework()
    .WithNoAuthorization();
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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.  net9.0 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.1.2 130,569 5/29/2025
9.1.1 97,717 5/2/2025
9.0.32 186,604 4/15/2025
9.0.31 5,690 4/2/2025
9.0.30 88,734 3/26/2025
9.0.29 8,912 3/18/2025
9.0.28 156 3/17/2025
9.0.27 150 3/16/2025
9.0.26 151 3/13/2025
9.0.25 52,023 3/9/2025
9.0.21 218 3/6/2025
9.0.20 19,492 3/6/2025
9.0.19 210 3/6/2025
9.0.18 211 3/4/2025
9.0.17 112 3/1/2025
9.0.16 102 3/1/2025
9.0.15 75,438 2/22/2025
9.0.14 22,476 2/18/2025
9.0.13 119 2/9/2025
9.0.12 217,652 1/13/2025
9.0.11 23,959 1/9/2025
9.0.10 80 1/9/2025
9.0.9 3,962 1/7/2025
9.0.8 12,452 1/6/2025
9.0.7 103 1/6/2025
9.0.4 92,234 12/23/2024
9.0.3 113 12/22/2024
9.0.2 10,661 12/21/2024
9.0.1 1,159 12/21/2024
9.0.0 172,966 11/16/2024
9.0.0-rc.1 91 10/18/2024
6.2.0 219,024 10/9/2024
6.1.1 126 10/9/2024
6.1.0 47,867 9/29/2024
6.0.24 144 9/11/2024
6.0.23 139 7/18/2024
6.0.21 148 6/18/2024
6.0.20 139 6/16/2024
6.0.19 523 6/14/2024
6.0.18 129 6/14/2024
6.0.17 140 6/14/2024
6.0.16 144 6/10/2024
6.0.15 129 6/9/2024
6.0.14 143 5/24/2024
6.0.13 139 5/23/2024
6.0.12 150 5/23/2024
6.0.11 137 5/20/2024
6.0.9 140 5/20/2024
6.0.7 139 5/18/2024
6.0.6 132 5/10/2024
6.0.5 127 5/10/2024
6.0.4 154 4/3/2024
6.0.3 168 3/25/2024
6.0.2 216 3/11/2024
6.0.0 556 11/21/2023
6.0.0-rc.6 105 10/25/2023
6.0.0-rc.5 98 10/25/2023
6.0.0-rc.4 86 10/23/2023
6.0.0-rc.3 80 10/19/2023
6.0.0-rc.2 89 10/18/2023
6.0.0-rc.1 90 10/16/2023
5.0.20 589 9/25/2023
5.0.19 580 9/10/2023
5.0.18 565 9/6/2023
5.0.17 609 9/6/2023
5.0.16 597 9/5/2023
5.0.15 532 9/5/2023
5.0.14 591 9/5/2023
5.0.13 538 9/1/2023
5.0.12 581 8/31/2023
5.0.11 553 8/30/2023
5.0.10 583 8/29/2023
5.0.9 616 8/24/2023
5.0.8 560 8/24/2023
5.0.7 592 8/23/2023
5.0.6 601 8/21/2023
5.0.5 610 8/21/2023
5.0.4 623 8/16/2023
5.0.3 757 8/2/2023
5.0.2 707 8/2/2023
5.0.1 726 8/1/2023
5.0.0 759 7/31/2023
4.1.26 769 7/20/2023
4.1.25 728 7/16/2023
4.1.24 730 6/13/2023
4.1.23 745 6/13/2023
4.1.22 1,167 5/30/2023
4.1.21 715 5/20/2023
4.1.20 315,718 4/19/2023
4.1.19 95,611 3/20/2023
4.1.18 794 3/20/2023
4.1.17 804 3/16/2023
4.1.16 846 3/16/2023
4.1.15 798 3/15/2023
4.1.14 1,419 3/9/2023
4.1.13 866 3/7/2023
4.1.12 918 2/10/2023
4.1.11 883 1/26/2023
4.1.10 918 1/22/2023
4.1.9 852 1/20/2023
4.1.8 903 1/18/2023
4.1.7 872 1/18/2023
4.1.6 878 1/17/2023
4.1.1 934 1/4/2023
4.1.0 909 1/1/2023
3.1.5 913 12/21/2022
3.1.3 889 12/12/2022
3.1.2 916 12/7/2022
3.1.1 886 12/7/2022
3.1.0 940 12/2/2022
3.0.29 933 12/1/2022
3.0.28 907 12/1/2022
3.0.27 889 11/23/2022
3.0.25 920 11/23/2022
3.0.24 932 11/18/2022
3.0.23 905 11/18/2022
3.0.22 950 11/15/2022
3.0.21 951 11/14/2022
3.0.20 967 11/13/2022
3.0.19 1,090 11/2/2022
3.0.18 892 11/2/2022
3.0.17 957 10/29/2022
3.0.16 1,017 10/29/2022
3.0.15 981 10/29/2022
3.0.14 961 10/29/2022
3.0.13 946 10/24/2022
3.0.12 1,019 10/17/2022