Rystem.RepositoryFramework.Infrastructure.MsSql 5.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Infrastructure.MsSql --version 5.0.2
                    
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.MsSql -Version 5.0.2
                    
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.MsSql" Version="5.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Infrastructure.MsSql" Version="5.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Infrastructure.MsSql" />
                    
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.MsSql --version 5.0.2
                    
#r "nuget: Rystem.RepositoryFramework.Infrastructure.MsSql, 5.0.2"
                    
#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.
#:package Rystem.RepositoryFramework.Infrastructure.MsSql@5.0.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rystem.RepositoryFramework.Infrastructure.MsSql&version=5.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.MsSql&version=5.0.2
                    
Install as a Cake Tool

What is Rystem?

Integration with MsSql and Repository Framework

Example from unit test with a business integration too.

 services.
    AddRepository<Cat, Guid>(settings =>
    {
        settings
        .WithMsSql(builder =>
        {
            builder.Schema = "repo";
            builder.ConnectionString = configuration["ConnectionString:Database"];
            builder.WithPrimaryKey(x => x.Id, x =>
                {
                    x.ColumnName = "Key";
                })
            .WithColumn(x => x.Paws, x =>
            {
                x.ColumnName = "Zampe";
                x.IsNullable = true;
            });
        });
    });

You found the IRepository<Cat, Guid> in DI to play with it.

Configure database after build

You have to run a method after the service collection build during startup. This method creates your tables.

var app = builder.Build();
await app.Services.WarmUpAsync();

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 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.3 136 9/2/2025
9.1.2 526,333 5/29/2025
9.1.1 97,732 5/2/2025
9.0.32 186,610 4/15/2025
9.0.31 5,720 4/2/2025
9.0.30 88,729 3/26/2025
9.0.29 8,940 3/18/2025
9.0.28 180 3/17/2025
9.0.27 171 3/16/2025
9.0.26 178 3/13/2025
9.0.25 52,034 3/9/2025
9.0.21 241 3/6/2025
9.0.20 19,479 3/6/2025
9.0.19 236 3/6/2025
9.0.18 240 3/4/2025
9.0.17 125 3/1/2025
9.0.16 126 3/1/2025
9.0.15 75,482 2/22/2025
9.0.14 22,510 2/18/2025
9.0.13 138 2/9/2025
9.0.12 217,667 1/13/2025
9.0.11 23,999 1/9/2025
9.0.10 114 1/9/2025
9.0.9 3,987 1/7/2025
9.0.8 12,471 1/6/2025
9.0.7 127 1/6/2025
9.0.4 92,253 12/23/2024
9.0.3 133 12/22/2024
9.0.2 10,688 12/21/2024
9.0.1 1,179 12/21/2024
9.0.0 172,942 11/16/2024
9.0.0-rc.1 97 10/18/2024
6.2.0 219,030 10/9/2024
6.1.1 143 10/9/2024
6.1.0 47,901 9/29/2024
6.0.24 146 9/11/2024
6.0.23 165 7/18/2024
6.0.21 163 6/18/2024
6.0.20 156 6/16/2024
6.0.19 162 6/14/2024
6.0.18 153 6/14/2024
6.0.17 156 6/14/2024
6.0.16 142 6/10/2024
6.0.15 150 6/9/2024
6.0.14 171 5/24/2024
6.0.13 159 5/23/2024
6.0.12 153 5/23/2024
6.0.11 168 5/20/2024
6.0.9 167 5/20/2024
6.0.7 155 5/18/2024
6.0.6 155 5/10/2024
6.0.5 134 5/10/2024
6.0.4 170 4/3/2024
6.0.3 153 3/25/2024
6.0.2 168 3/11/2024
6.0.0 210 11/21/2023
6.0.0-rc.6 126 10/25/2023
6.0.0-rc.5 100 10/25/2023
6.0.0-rc.4 92 10/23/2023
6.0.0-rc.3 92 10/19/2023
6.0.0-rc.2 92 10/18/2023
6.0.0-rc.1 100 10/16/2023
5.0.20 191 9/25/2023
5.0.19 177 9/10/2023
5.0.18 170 9/6/2023
5.0.17 157 9/6/2023
5.0.16 171 9/5/2023
5.0.15 166 9/5/2023
5.0.14 172 9/5/2023
5.0.13 159 9/1/2023
5.0.12 172 8/31/2023
5.0.11 156 8/30/2023
5.0.10 184 8/29/2023
5.0.9 161 8/24/2023
5.0.8 180 8/24/2023
5.0.7 177 8/23/2023
5.0.6 172 8/21/2023
5.0.5 184 8/21/2023
5.0.4 174 8/16/2023
5.0.3 186 8/2/2023
5.0.2 200 8/2/2023
5.0.1 198 8/1/2023
5.0.0 195 7/31/2023
4.1.26 220 7/20/2023
4.1.25 194 7/16/2023
4.1.24 206 6/13/2023
4.1.23 201 6/13/2023
4.1.22 199 5/30/2023
4.1.21 209 5/20/2023
4.1.20 315,279 4/19/2023
4.1.19 94,929 3/20/2023
4.1.18 271 3/20/2023
4.1.17 270 3/16/2023
4.1.16 275 3/16/2023
4.1.15 272 3/15/2023
4.1.14 833 3/9/2023
4.1.13 271 3/7/2023
4.1.12 331 2/10/2023
4.1.11 353 1/26/2023
4.1.10 352 1/22/2023
4.1.9 350 1/20/2023
4.1.8 361 1/18/2023
4.1.7 351 1/18/2023
4.1.6 348 1/17/2023
4.1.1 366 1/4/2023
4.1.0 376 1/1/2023
3.1.5 364 12/21/2022
3.1.3 362 12/12/2022
3.1.2 346 12/7/2022
3.1.1 354 12/7/2022
3.1.0 404 12/2/2022
3.0.29 388 12/1/2022
3.0.28 382 12/1/2022
3.0.27 404 11/23/2022
3.0.25 392 11/23/2022
3.0.24 410 11/18/2022
3.0.23 404 11/18/2022
3.0.22 408 11/15/2022
3.0.21 400 11/14/2022
3.0.20 426 11/13/2022
3.0.19 423 11/2/2022
3.0.18 423 11/2/2022
3.0.17 451 10/29/2022
3.0.16 448 10/29/2022
3.0.15 450 10/29/2022
3.0.14 449 10/29/2022
3.0.13 457 10/24/2022
3.0.12 458 10/17/2022
3.0.11 484 10/13/2022