Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql 9.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql --version 9.1.2
                    
NuGet\Install-Package Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql -Version 9.1.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.Azure.Cosmos.Sql" Version="9.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql" Version="9.1.2" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql" />
                    
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.Azure.Cosmos.Sql --version 9.1.2
                    
#r "nuget: Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql, 9.1.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.Azure.Cosmos.Sql@9.1.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.Azure.Cosmos.Sql&version=9.1.2
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Infrastructure.Azure.Cosmos.Sql&version=9.1.2
                    
Install as a Cake Tool

What is Rystem?

Integration with Azure Cosmos Sql and Repository Framework

Example from unit test with a business integration too.

 await services
    .AddRepositoryAsync<AppUser, AppUserKey>(async builder =>
        {
            await builder.WithCosmosSqlAsync(x =>
            {
                x.Settings.ConnectionString = configuration["ConnectionString:CosmosSql"];
                x.Settings.DatabaseName = "unittestdatabase";
                x.WithId(x => new AppUserKey(x.Id));
            }).NoContext();
        builder
            .AddBusiness()
            .AddBusinessBeforeInsert<AppUserBeforeInsertBusiness>()
            .AddBusinessBeforeInsert<AppUserBeforeInsertBusiness2>();
    }).NoContext();

You found the IRepository<AppUser, AppUserKey> 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 cosmos sql 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.  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 192 2 months ago
9.1.2 699,805 5 months ago
9.1.1 97,748 6 months ago
9.0.32 186,640 7 months ago
9.0.31 5,735 7 months ago
9.0.30 88,783 7 months ago
9.0.29 8,978 8 months ago
9.0.28 211 8 months ago
9.0.27 200 8 months ago
9.0.26 208 8 months ago
9.0.25 52,076 8 months ago
9.0.21 272 8 months ago
9.0.20 19,523 8 months ago
9.0.19 268 8 months ago
9.0.18 271 8 months ago
9.0.17 161 8 months ago
9.0.16 176 8 months ago
9.0.15 75,476 8 months ago
9.0.14 22,546 9 months ago
9.0.13 163 9 months ago
9.0.12 217,659 10 months ago
9.0.11 23,996 10 months ago
9.0.10 133 10 months ago
9.0.9 4,019 10 months ago
9.0.8 12,511 10 months ago
9.0.7 157 10 months ago
9.0.4 92,295 12/23/2024
9.0.3 172 12/22/2024
9.0.2 10,703 12/21/2024
9.0.1 1,208 12/21/2024
9.0.0 172,981 11/16/2024
9.0.0-rc.1 100 10/18/2024
6.2.0 219,038 10/9/2024
6.1.1 180 10/9/2024
6.1.0 47,921 9/29/2024
6.0.24 184 9/11/2024
6.0.23 188 7/18/2024
6.0.21 195 6/18/2024
6.0.20 193 6/16/2024
6.0.19 185 6/14/2024
6.0.18 178 6/14/2024
6.0.17 208 6/14/2024
6.0.16 193 6/10/2024
6.0.15 189 6/9/2024
6.0.14 196 5/24/2024
6.0.13 219 5/23/2024
6.0.12 178 5/23/2024
6.0.11 203 5/20/2024
6.0.9 201 5/20/2024
6.0.7 182 5/18/2024
6.0.6 190 5/10/2024
6.0.5 192 5/10/2024
6.0.4 193 4/3/2024
6.0.3 232 3/25/2024
6.0.2 276 3/11/2024
6.0.0 566 11/21/2023
6.0.0-rc.6 115 10/25/2023
6.0.0-rc.5 104 10/25/2023
6.0.0-rc.4 102 10/23/2023
6.0.0-rc.3 100 10/19/2023
6.0.0-rc.2 101 10/18/2023
6.0.0-rc.1 103 10/16/2023
5.0.20 600 9/25/2023
5.0.19 589 9/10/2023
5.0.18 549 9/6/2023
5.0.17 561 9/6/2023
5.0.16 552 9/5/2023
5.0.15 551 9/5/2023
5.0.14 559 9/5/2023
5.0.13 581 9/1/2023
5.0.12 598 8/31/2023
5.0.11 539 8/30/2023
5.0.10 571 8/29/2023
5.0.9 584 8/24/2023
5.0.8 571 8/24/2023
5.0.7 568 8/23/2023
5.0.6 550 8/21/2023
5.0.5 641 8/21/2023
5.0.4 562 8/16/2023
5.0.3 686 8/2/2023
5.0.2 654 8/2/2023
5.0.1 638 8/1/2023
5.0.0 709 7/31/2023
4.1.26 604 7/20/2023
4.1.25 639 7/16/2023
4.1.24 696 6/13/2023
4.1.23 674 6/13/2023
4.1.22 1,162 5/30/2023
4.1.21 646 5/20/2023
4.1.20 315,786 4/19/2023
4.1.19 95,634 3/20/2023
4.1.18 782 3/20/2023
4.1.17 797 3/16/2023
4.1.16 750 3/16/2023
4.1.15 728 3/15/2023
4.1.14 1,319 3/9/2023
4.1.13 775 3/7/2023
4.1.12 898 2/10/2023
4.1.11 790 1/26/2023
4.1.10 865 1/22/2023
4.1.9 810 1/20/2023
4.1.8 841 1/18/2023
4.1.7 773 1/18/2023
4.1.6 884 1/17/2023
4.1.1 830 1/4/2023
4.1.0 776 1/1/2023
3.1.5 793 12/21/2022
3.1.3 792 12/12/2022
3.1.2 813 12/7/2022
3.1.1 792 12/7/2022
3.1.0 809 12/2/2022
3.0.29 907 12/1/2022
3.0.28 791 12/1/2022
3.0.27 859 11/23/2022
3.0.25 867 11/23/2022
3.0.24 884 11/18/2022
3.0.23 795 11/18/2022
3.0.22 860 11/15/2022
3.0.21 904 11/14/2022
3.0.20 880 11/13/2022
3.0.19 890 11/2/2022
3.0.18 934 11/2/2022
3.0.17 890 10/29/2022
3.0.16 938 10/29/2022
3.0.15 872 10/29/2022
3.0.14 888 10/24/2022
3.0.13 945 10/24/2022
3.0.12 943 10/17/2022
3.0.11 985 10/10/2022
3.0.10 909 10/6/2022
3.0.9 949 10/6/2022
3.0.8 797 10/6/2022
3.0.7 977 10/6/2022
3.0.6 940 10/5/2022
3.0.5 967 10/5/2022
3.0.4 879 10/5/2022
3.0.3 867 10/3/2022
3.0.2 907 9/30/2022
3.0.1 858 9/29/2022
2.0.16 951 9/27/2022
2.0.15 984 9/27/2022
2.0.14 982 9/26/2022
2.0.13 975 9/26/2022
2.0.12 923 9/26/2022
2.0.11 993 9/25/2022
2.0.10 1,000 9/25/2022
2.0.9 1,010 9/22/2022
2.0.8 929 9/22/2022
2.0.6 882 9/20/2022
2.0.5 990 9/20/2022
2.0.4 985 9/20/2022
2.0.2 943 9/20/2022
2.0.1 1,089 9/13/2022
2.0.0 981 8/19/2022
1.1.24 1,007 7/30/2022
1.1.23 976 7/29/2022
1.1.22 997 7/29/2022
1.1.21 908 7/29/2022
1.1.20 1,017 7/29/2022
1.1.19 1,021 7/27/2022
1.1.17 982 7/27/2022
1.1.16 943 7/26/2022
1.1.15 1,053 7/25/2022
1.1.14 979 7/25/2022
1.1.13 999 7/22/2022
1.1.12 980 7/19/2022
1.1.11 973 7/19/2022
1.1.10 958 7/19/2022
1.1.9 973 7/19/2022
1.1.8 1,042 7/18/2022
1.1.7 959 7/18/2022
1.1.6 982 7/18/2022
1.1.5 1,002 7/17/2022
1.1.4 1,016 7/17/2022
1.1.3 928 7/17/2022
1.1.2 1,015 7/17/2022
1.1.0 1,015 7/17/2022
1.0.2 1,038 7/15/2022
1.0.1 963 7/15/2022
1.0.0 1,026 7/8/2022
0.10.7 1,031 7/7/2022
0.10.2 1,013 7/2/2022
0.10.1 964 7/1/2022
0.10.0 990 7/1/2022
0.9.10 994 6/20/2022
0.9.9 1,007 6/11/2022
0.9.7 996 6/9/2022
0.9.6 956 6/5/2022