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.
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.
// Install Rystem.RepositoryFramework.Infrastructure.EntityFramework as a Cake Addin
#addin nuget:?package=Rystem.RepositoryFramework.Infrastructure.EntityFramework&version=4.1.13

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

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. 
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.29 5,621 2 days ago
9.0.28 53 3 days ago
9.0.27 50 4 days ago
9.0.26 127 8 days ago
9.0.25 52,000 11 days ago
9.0.21 193 14 days ago
9.0.20 19,470 14 days ago
9.0.19 188 15 days ago
9.0.18 190 16 days ago
9.0.17 90 19 days ago
9.0.16 79 19 days ago
9.0.15 75,414 a month ago
9.0.14 22,455 a month ago
9.0.13 96 a month ago
9.0.12 217,630 2 months ago
9.0.11 23,938 2 months ago
9.0.10 59 2 months ago
9.0.9 3,940 2 months ago
9.0.8 12,429 2 months ago
9.0.7 83 2 months ago
9.0.4 92,213 3 months ago
9.0.3 92 3 months ago
9.0.2 10,642 3 months ago
9.0.1 1,139 3 months ago
9.0.0 172,939 4 months ago
9.0.0-rc.1 85 5 months ago
6.2.0 219,005 5 months ago
6.1.1 108 5 months ago
6.1.0 47,847 6 months ago
6.0.24 126 6 months ago
6.0.23 122 8 months ago
6.0.21 129 9 months ago
6.0.20 123 9 months ago
6.0.19 460 9 months ago
6.0.18 113 9 months ago
6.0.17 125 9 months ago
6.0.16 127 9 months ago
6.0.15 113 9 months ago
6.0.14 128 10 months ago
6.0.13 122 10 months ago
6.0.12 128 10 months ago
6.0.11 120 10 months ago
6.0.9 124 5/20/2024
6.0.7 123 5/18/2024
6.0.6 116 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 80 10/18/2023
6.0.0-rc.1 82 10/16/2023
5.0.20 572 9/25/2023
5.0.19 568 9/10/2023
5.0.18 553 9/6/2023
5.0.17 598 9/6/2023
5.0.16 585 9/5/2023
5.0.15 520 9/5/2023
5.0.14 579 9/5/2023
5.0.13 526 9/1/2023
5.0.12 568 8/31/2023
5.0.11 532 8/30/2023
5.0.10 571 8/29/2023
5.0.9 603 8/24/2023
5.0.8 540 8/24/2023
5.0.7 572 8/23/2023
5.0.6 589 8/21/2023
5.0.5 595 8/21/2023
5.0.4 609 8/16/2023
5.0.3 743 8/2/2023
5.0.2 692 8/2/2023
5.0.1 710 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 693 5/20/2023
4.1.20 315,699 4/19/2023
4.1.19 95,591 3/20/2023
4.1.18 774 3/20/2023
4.1.17 785 3/16/2023
4.1.16 826 3/16/2023
4.1.15 778 3/15/2023
4.1.14 1,399 3/9/2023
4.1.13 845 3/7/2023
4.1.12 899 2/10/2023
4.1.11 861 1/26/2023
4.1.10 894 1/22/2023
4.1.9 830 1/20/2023
4.1.8 882 1/18/2023
4.1.7 851 1/18/2023
4.1.6 857 1/17/2023
4.1.1 913 1/4/2023
4.1.0 889 1/1/2023
3.1.5 893 12/21/2022
3.1.3 870 12/12/2022
3.1.2 898 12/7/2022
3.1.1 867 12/7/2022
3.1.0 921 12/2/2022
3.0.29 914 12/1/2022
3.0.28 888 12/1/2022
3.0.27 869 11/23/2022
3.0.25 900 11/23/2022
3.0.24 904 11/18/2022
3.0.23 884 11/18/2022
3.0.22 928 11/15/2022
3.0.21 932 11/14/2022
3.0.20 947 11/13/2022
3.0.19 1,069 11/2/2022
3.0.18 872 11/2/2022
3.0.17 937 10/29/2022
3.0.16 998 10/29/2022
3.0.15 960 10/29/2022
3.0.14 940 10/29/2022
3.0.13 925 10/24/2022
3.0.12 997 10/17/2022