Rystem.RepositoryFramework.Infrastructure.EntityFramework 9.0.19

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.19
                    
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.EntityFramework -Version 9.0.19
                    
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.19" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Infrastructure.EntityFramework" Version="9.0.19" />
                    
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 9.0.19
                    
#r "nuget: Rystem.RepositoryFramework.Infrastructure.EntityFramework, 9.0.19"
                    
#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=9.0.19
                    
Install Rystem.RepositoryFramework.Infrastructure.EntityFramework as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=9.0.19
                    
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 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.32 90,293 4/15/2025
9.0.31 5,676 4/2/2025
9.0.30 88,722 3/26/2025
9.0.29 8,900 3/18/2025
9.0.28 142 3/17/2025
9.0.27 137 3/16/2025
9.0.26 138 3/13/2025
9.0.25 52,009 3/9/2025
9.0.21 205 3/6/2025
9.0.20 19,480 3/6/2025
9.0.19 198 3/6/2025
9.0.18 199 3/4/2025
9.0.17 100 3/1/2025
9.0.16 90 3/1/2025
9.0.15 75,425 2/22/2025
9.0.14 22,464 2/18/2025
9.0.13 105 2/9/2025
9.0.12 217,638 1/13/2025
9.0.11 23,947 1/9/2025
9.0.10 68 1/9/2025
9.0.9 3,949 1/7/2025
9.0.8 12,440 1/6/2025
9.0.7 92 1/6/2025
9.0.4 92,222 12/23/2024
9.0.3 101 12/22/2024
9.0.2 10,650 12/21/2024
9.0.1 1,148 12/21/2024
9.0.0 172,946 11/16/2024
9.0.0-rc.1 86 10/18/2024
6.2.0 219,012 10/9/2024
6.1.1 113 10/9/2024
6.1.0 47,854 9/29/2024
6.0.24 132 9/11/2024
6.0.23 127 7/18/2024
6.0.21 135 6/18/2024
6.0.20 128 6/16/2024
6.0.19 465 6/14/2024
6.0.18 117 6/14/2024
6.0.17 129 6/14/2024
6.0.16 132 6/10/2024
6.0.15 117 6/9/2024
6.0.14 132 5/24/2024
6.0.13 127 5/23/2024
6.0.12 138 5/23/2024
6.0.11 125 5/20/2024
6.0.9 128 5/20/2024
6.0.7 128 5/18/2024
6.0.6 121 5/10/2024
6.0.5 116 5/10/2024
6.0.4 141 4/3/2024
6.0.3 155 3/25/2024
6.0.2 204 3/11/2024
6.0.0 551 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 570 9/10/2023
5.0.18 555 9/6/2023
5.0.17 599 9/6/2023
5.0.16 587 9/5/2023
5.0.15 522 9/5/2023
5.0.14 581 9/5/2023
5.0.13 528 9/1/2023
5.0.12 570 8/31/2023
5.0.11 534 8/30/2023
5.0.10 573 8/29/2023
5.0.9 605 8/24/2023
5.0.8 541 8/24/2023
5.0.7 580 8/23/2023
5.0.6 591 8/21/2023
5.0.5 596 8/21/2023
5.0.4 611 8/16/2023
5.0.3 744 8/2/2023
5.0.2 693 8/2/2023
5.0.1 713 8/1/2023
5.0.0 746 7/31/2023
4.1.26 754 7/20/2023
4.1.25 712 7/16/2023
4.1.24 713 6/13/2023
4.1.23 729 6/13/2023
4.1.22 1,151 5/30/2023
4.1.21 698 5/20/2023
4.1.20 315,702 4/19/2023
4.1.19 95,595 3/20/2023
4.1.18 779 3/20/2023
4.1.17 788 3/16/2023
4.1.16 830 3/16/2023
4.1.15 781 3/15/2023
4.1.14 1,402 3/9/2023
4.1.13 849 3/7/2023
4.1.12 902 2/10/2023
4.1.11 866 1/26/2023
4.1.10 900 1/22/2023
4.1.9 835 1/20/2023
4.1.8 886 1/18/2023
4.1.7 856 1/18/2023
4.1.6 862 1/17/2023
4.1.1 918 1/4/2023
4.1.0 893 1/1/2023
3.1.5 898 12/21/2022
3.1.3 874 12/12/2022
3.1.2 902 12/7/2022
3.1.1 871 12/7/2022
3.1.0 925 12/2/2022
3.0.29 918 12/1/2022
3.0.28 892 12/1/2022
3.0.27 874 11/23/2022
3.0.25 904 11/23/2022
3.0.24 908 11/18/2022
3.0.23 889 11/18/2022
3.0.22 934 11/15/2022
3.0.21 936 11/14/2022
3.0.20 952 11/13/2022
3.0.19 1,074 11/2/2022
3.0.18 876 11/2/2022
3.0.17 942 10/29/2022
3.0.16 1,002 10/29/2022
3.0.15 965 10/29/2022
3.0.14 945 10/29/2022
3.0.13 931 10/24/2022
3.0.12 1,003 10/17/2022