Rystem.RepositoryFramework.Infrastructure.EntityFramework 6.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Infrastructure.EntityFramework --version 6.0.6
                    
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.EntityFramework -Version 6.0.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="Rystem.RepositoryFramework.Infrastructure.EntityFramework" Version="6.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Infrastructure.EntityFramework" Version="6.0.6" />
                    
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 6.0.6
                    
#r "nuget: Rystem.RepositoryFramework.Infrastructure.EntityFramework, 6.0.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.
#addin nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=6.0.6
                    
Install Rystem.RepositoryFramework.Infrastructure.EntityFramework as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=6.0.6
                    
Install Rystem.RepositoryFramework.Infrastructure.EntityFramework 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>(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.  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. 
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.31 88 4/2/2025
9.0.30 22,049 3/26/2025
9.0.29 8,895 3/18/2025
9.0.28 138 3/17/2025
9.0.27 133 3/16/2025
9.0.26 134 3/13/2025
9.0.25 52,005 3/9/2025
9.0.21 198 3/6/2025
9.0.20 19,476 3/6/2025
9.0.19 194 3/6/2025
9.0.18 195 3/4/2025
9.0.17 96 3/1/2025
9.0.16 86 3/1/2025
9.0.15 75,421 2/22/2025
9.0.14 22,460 2/18/2025
9.0.13 101 2/9/2025
9.0.12 217,634 1/13/2025
9.0.11 23,943 1/9/2025
9.0.10 64 1/9/2025
9.0.9 3,945 1/7/2025
9.0.8 12,434 1/6/2025
9.0.7 88 1/6/2025
9.0.4 92,218 12/23/2024
9.0.3 97 12/22/2024
9.0.2 10,646 12/21/2024
9.0.1 1,144 12/21/2024
9.0.0 172,942 11/16/2024
9.0.0-rc.1 86 10/18/2024
6.2.0 219,008 10/9/2024
6.1.1 109 10/9/2024
6.1.0 47,849 9/29/2024
6.0.24 128 9/11/2024
6.0.23 123 7/18/2024
6.0.21 131 6/18/2024
6.0.20 124 6/16/2024
6.0.19 461 6/14/2024
6.0.18 113 6/14/2024
6.0.17 125 6/14/2024
6.0.16 128 6/10/2024
6.0.15 113 6/9/2024
6.0.14 128 5/24/2024
6.0.13 123 5/23/2024
6.0.12 128 5/23/2024
6.0.11 121 5/20/2024
6.0.9 124 5/20/2024
6.0.7 124 5/18/2024
6.0.6 117 5/10/2024
6.0.5 112 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 550 11/21/2023
6.0.0-rc.6 98 10/25/2023
6.0.0-rc.5 91 10/25/2023
6.0.0-rc.4 80 10/23/2023
6.0.0-rc.3 73 10/19/2023
6.0.0-rc.2 81 10/18/2023
6.0.0-rc.1 82 10/16/2023
5.0.20 572 9/25/2023
5.0.19 569 9/10/2023
5.0.18 554 9/6/2023
5.0.17 598 9/6/2023
5.0.16 586 9/5/2023
5.0.15 521 9/5/2023
5.0.14 580 9/5/2023
5.0.13 527 9/1/2023
5.0.12 569 8/31/2023
5.0.11 533 8/30/2023
5.0.10 572 8/29/2023
5.0.9 604 8/24/2023
5.0.8 540 8/24/2023
5.0.7 579 8/23/2023
5.0.6 590 8/21/2023
5.0.5 595 8/21/2023
5.0.4 610 8/16/2023
5.0.3 743 8/2/2023
5.0.2 692 8/2/2023
5.0.1 712 8/1/2023
5.0.0 745 7/31/2023
4.1.26 752 7/20/2023
4.1.25 710 7/16/2023
4.1.24 710 6/13/2023
4.1.23 726 6/13/2023
4.1.22 1,148 5/30/2023
4.1.21 695 5/20/2023
4.1.20 315,699 4/19/2023
4.1.19 95,592 3/20/2023
4.1.18 776 3/20/2023
4.1.17 785 3/16/2023
4.1.16 827 3/16/2023
4.1.15 778 3/15/2023
4.1.14 1,399 3/9/2023
4.1.13 846 3/7/2023
4.1.12 899 2/10/2023
4.1.11 863 1/26/2023
4.1.10 897 1/22/2023
4.1.9 832 1/20/2023
4.1.8 883 1/18/2023
4.1.7 853 1/18/2023
4.1.6 859 1/17/2023
4.1.1 915 1/4/2023
4.1.0 890 1/1/2023
3.1.5 895 12/21/2022
3.1.3 871 12/12/2022
3.1.2 899 12/7/2022
3.1.1 868 12/7/2022
3.1.0 922 12/2/2022
3.0.29 915 12/1/2022
3.0.28 889 12/1/2022
3.0.27 871 11/23/2022
3.0.25 901 11/23/2022
3.0.24 905 11/18/2022
3.0.23 886 11/18/2022
3.0.22 931 11/15/2022
3.0.21 933 11/14/2022
3.0.20 949 11/13/2022
3.0.19 1,071 11/2/2022
3.0.18 873 11/2/2022
3.0.17 939 10/29/2022
3.0.16 999 10/29/2022
3.0.15 962 10/29/2022
3.0.14 942 10/29/2022
3.0.13 928 10/24/2022
3.0.12 1,000 10/17/2022