Rystem.RepositoryFramework.Infrastructure.Azure.Storage.Table 9.1.1

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

What is Rystem?

Integration with Azure TableStorage and Repository Framework

Example from unit test with a business integration too. Here you may find the chance to use ToResult() in services to avoid the async method.

services
    .AddRepositoryAsync<AppUser, AppUserKey>(async builder =>
    {
        await builder
            .WithTableStorageAsync(tableStorageBuilder =>
            {
                tableStorageBuilder
                    .Settings.ConnectionString = configuration["ConnectionString:Storage"];
                tableStorageBuilder
                    .WithTableStorageKeyReader<TableStorageKeyReader>()
                    .WithPartitionKey(x => x.Id, x => x.Id)
                    .WithRowKey(x => x.Username)
                    .WithTimestamp(x => x.CreationTime);
            });
    }).ToResult();

You found the IRepository<SuperCar, Guid> 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 tablestorage 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 155 19 days ago
9.1.2 563,601 4 months ago
9.1.1 97,871 5 months ago
9.0.32 186,621 5 months ago
9.0.31 5,728 6 months ago
9.0.30 88,758 6 months ago
9.0.29 8,952 6 months ago
9.0.28 176 6 months ago
9.0.27 177 6 months ago
9.0.26 184 6 months ago
9.0.25 52,059 6 months ago
9.0.21 648 6 months ago
9.0.20 19,497 6 months ago
9.0.19 245 6 months ago
9.0.18 247 7 months ago
9.0.17 150 7 months ago
9.0.16 151 7 months ago
9.0.15 75,484 7 months ago
9.0.14 22,497 7 months ago
9.0.13 144 7 months ago
9.0.12 218,016 8 months ago
9.0.11 24,029 8 months ago
9.0.10 124 8 months ago
9.0.9 4,002 8 months ago
9.0.8 12,483 8 months ago
9.0.7 129 8 months ago
9.0.4 92,314 9 months ago
9.0.3 156 9 months ago
9.0.2 10,699 9 months ago
9.0.1 1,182 9 months ago
9.0.0 173,012 11/16/2024
9.0.0-rc.1 133 10/18/2024
6.2.0 219,126 10/9/2024
6.1.1 159 10/9/2024
6.1.0 47,953 9/29/2024
6.0.24 174 9/11/2024
6.0.23 163 7/18/2024
6.0.21 183 6/18/2024
6.0.20 184 6/16/2024
6.0.19 176 6/14/2024
6.0.18 167 6/14/2024
6.0.17 184 6/14/2024
6.0.16 190 6/10/2024
6.0.15 180 6/9/2024
6.0.14 182 5/24/2024
6.0.13 211 5/23/2024
6.0.12 177 5/23/2024
6.0.11 196 5/20/2024
6.0.9 190 5/20/2024
6.0.7 168 5/18/2024
6.0.6 193 5/10/2024
6.0.5 187 5/10/2024
6.0.4 235 4/3/2024
6.0.3 1,660 3/25/2024
6.0.2 298 3/11/2024
6.0.0 1,318 11/21/2023
6.0.0-rc.6 138 10/25/2023
6.0.0-rc.5 106 10/25/2023
6.0.0-rc.4 105 10/23/2023
6.0.0-rc.3 100 10/19/2023
6.0.0-rc.2 117 10/18/2023
6.0.0-rc.1 105 10/16/2023
5.0.20 896 9/25/2023
5.0.19 997 9/10/2023
5.0.18 861 9/6/2023
5.0.17 847 9/6/2023
5.0.16 900 9/5/2023
5.0.15 896 9/5/2023
5.0.14 975 9/5/2023
5.0.13 790 9/1/2023
5.0.12 844 8/31/2023
5.0.11 864 8/30/2023
5.0.10 944 8/29/2023
5.0.9 875 8/24/2023
5.0.8 900 8/24/2023
5.0.7 931 8/23/2023
5.0.6 874 8/21/2023
5.0.5 876 8/21/2023
5.0.4 962 8/16/2023
5.0.3 952 8/2/2023
5.0.2 1,038 8/2/2023
5.0.1 1,026 8/1/2023
5.0.0 1,001 7/31/2023
4.1.26 1,093 7/20/2023
4.1.25 990 7/16/2023
4.1.24 976 6/13/2023
4.1.23 1,010 6/13/2023
4.1.22 1,517 5/30/2023
4.1.21 1,003 5/20/2023
4.1.20 316,139 4/19/2023
4.1.19 95,946 3/20/2023
4.1.18 1,165 3/20/2023
4.1.17 1,107 3/16/2023
4.1.16 1,030 3/16/2023
4.1.15 1,054 3/15/2023
4.1.14 1,692 3/9/2023
4.1.13 1,205 3/7/2023
4.1.12 1,229 2/10/2023
4.1.11 1,095 1/26/2023
4.1.10 1,131 1/22/2023
4.1.9 1,157 1/20/2023
4.1.8 1,236 1/18/2023
4.1.7 1,183 1/18/2023
4.1.6 1,164 1/17/2023
4.1.1 1,168 1/4/2023
4.1.0 1,216 1/1/2023
3.1.5 1,222 12/21/2022
3.1.3 1,222 12/12/2022
3.1.2 1,181 12/7/2022
3.1.1 1,153 12/7/2022
3.1.0 1,212 12/2/2022
3.0.29 1,173 12/1/2022
3.0.28 1,181 12/1/2022
3.0.27 1,287 11/23/2022
3.0.25 1,180 11/23/2022
3.0.24 1,227 11/18/2022
3.0.23 1,207 11/18/2022
3.0.22 1,229 11/15/2022
3.0.21 1,212 11/14/2022
3.0.20 1,208 11/13/2022
3.0.19 1,320 11/2/2022
3.0.18 1,204 11/2/2022
3.0.17 1,243 10/29/2022
3.0.16 1,299 10/29/2022
3.0.15 1,274 10/29/2022
3.0.14 1,241 10/24/2022
3.0.13 1,284 10/24/2022
3.0.12 1,363 10/17/2022
3.0.11 1,321 10/10/2022
3.0.10 1,299 10/6/2022
3.0.9 1,344 10/6/2022
3.0.8 1,278 10/6/2022
3.0.7 1,258 10/6/2022
3.0.6 1,254 10/5/2022
3.0.5 1,285 10/5/2022
3.0.4 1,227 10/5/2022
3.0.3 1,252 10/3/2022
3.0.2 1,309 9/30/2022
3.0.1 1,232 9/29/2022
2.0.17 1,335 9/29/2022
2.0.16 1,336 9/27/2022
2.0.15 1,356 9/27/2022
2.0.14 1,325 9/26/2022
2.0.13 1,323 9/26/2022
2.0.12 1,257 9/26/2022
2.0.11 1,306 9/25/2022
2.0.10 1,324 9/25/2022
2.0.9 1,295 9/22/2022
2.0.8 1,349 9/22/2022
2.0.6 1,261 9/20/2022
2.0.5 1,367 9/20/2022
2.0.4 1,308 9/20/2022
2.0.2 1,312 9/20/2022
2.0.1 1,326 9/13/2022
2.0.0 1,286 8/19/2022
1.1.24 1,366 7/30/2022
1.1.23 1,264 7/29/2022
1.1.22 1,287 7/29/2022
1.1.21 1,400 7/29/2022
1.1.20 1,382 7/29/2022
1.1.19 1,356 7/27/2022
1.1.17 1,374 7/27/2022
1.1.16 1,376 7/26/2022
1.1.15 1,380 7/25/2022
1.1.14 1,327 7/25/2022
1.1.13 1,248 7/22/2022
1.1.12 1,372 7/19/2022
1.1.11 1,295 7/19/2022
1.1.10 1,397 7/19/2022
1.1.9 1,356 7/19/2022
1.1.8 1,308 7/18/2022
1.1.7 1,366 7/18/2022
1.1.6 1,333 7/18/2022
1.1.5 1,372 7/17/2022
1.1.4 1,355 7/17/2022
1.1.3 1,335 7/17/2022
1.1.2 1,434 7/17/2022
1.1.0 1,341 7/17/2022
1.0.2 1,389 7/15/2022
1.0.1 1,308 7/15/2022
1.0.0 1,370 7/8/2022
0.10.7 1,280 7/7/2022
0.10.3 1,353 7/3/2022
0.10.2 1,333 7/2/2022
0.10.1 1,315 7/1/2022
0.10.0 1,307 7/1/2022
0.9.10 1,350 6/20/2022
0.9.9 1,327 6/11/2022
0.9.7 1,308 6/9/2022
0.9.6 1,274 6/5/2022
0.9.5 1,337 6/3/2022
0.9.3 1,327 6/3/2022