Rystem.RepositoryFramework.Infrastructure.EntityFramework 6.0.7

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.7
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.EntityFramework -Version 6.0.7
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.7" />
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.7
#r "nuget: Rystem.RepositoryFramework.Infrastructure.EntityFramework, 6.0.7"
#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.7

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

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.20 34 6/16/2024
6.0.19 41 6/14/2024
6.0.18 33 6/14/2024
6.0.17 34 6/14/2024
6.0.16 61 6/10/2024
6.0.15 63 6/9/2024
6.0.14 86 5/24/2024
6.0.13 80 5/23/2024
6.0.12 78 5/23/2024
6.0.11 76 5/20/2024
6.0.9 84 5/20/2024
6.0.7 75 5/18/2024
6.0.6 76 5/10/2024
6.0.5 75 5/10/2024
6.0.4 108 4/3/2024
6.0.3 118 3/25/2024
6.0.2 164 3/11/2024
6.0.0 513 11/21/2023
6.0.0-rc.6 80 10/25/2023
6.0.0-rc.5 66 10/25/2023
6.0.0-rc.4 59 10/23/2023
6.0.0-rc.3 53 10/19/2023
6.0.0-rc.2 60 10/18/2023
6.0.0-rc.1 60 10/16/2023
5.0.20 536 9/25/2023
5.0.19 532 9/10/2023
5.0.18 516 9/6/2023
5.0.17 557 9/6/2023
5.0.16 548 9/5/2023
5.0.15 479 9/5/2023
5.0.14 533 9/5/2023
5.0.13 490 9/1/2023
5.0.12 534 8/31/2023
5.0.11 497 8/30/2023
5.0.10 534 8/29/2023
5.0.9 553 8/24/2023
5.0.8 504 8/24/2023
5.0.7 542 8/23/2023
5.0.6 553 8/21/2023
5.0.5 564 8/21/2023
5.0.4 576 8/16/2023
5.0.3 710 8/2/2023
5.0.2 661 8/2/2023
5.0.1 674 8/1/2023
5.0.0 712 7/31/2023
4.1.26 714 7/20/2023
4.1.25 669 7/16/2023
4.1.24 672 6/13/2023
4.1.23 690 6/13/2023
4.1.22 1,041 5/30/2023
4.1.21 655 5/20/2023
4.1.20 315,660 4/19/2023
4.1.19 95,551 3/20/2023
4.1.18 739 3/20/2023
4.1.17 751 3/16/2023
4.1.16 786 3/16/2023
4.1.15 744 3/15/2023
4.1.14 1,364 3/9/2023
4.1.13 810 3/7/2023
4.1.12 859 2/10/2023
4.1.11 823 1/26/2023
4.1.10 860 1/22/2023
4.1.9 794 1/20/2023
4.1.8 845 1/18/2023
4.1.7 810 1/18/2023
4.1.6 815 1/17/2023
4.1.1 868 1/4/2023
4.1.0 845 1/1/2023
3.1.5 853 12/21/2022
3.1.3 832 12/12/2022
3.1.2 855 12/7/2022
3.1.1 828 12/7/2022
3.1.0 879 12/2/2022
3.0.29 867 12/1/2022
3.0.28 847 12/1/2022
3.0.27 823 11/23/2022
3.0.25 856 11/23/2022
3.0.24 860 11/18/2022
3.0.23 845 11/18/2022
3.0.22 880 11/15/2022
3.0.21 890 11/14/2022
3.0.20 905 11/13/2022
3.0.19 1,030 11/2/2022
3.0.18 833 11/2/2022
3.0.17 896 10/29/2022
3.0.16 955 10/29/2022
3.0.15 914 10/29/2022
3.0.14 893 10/29/2022
3.0.13 879 10/24/2022
3.0.12 946 10/17/2022