Rystem.RepositoryFramework.Infrastructure.Azure.Storage.Blob 10.0.4

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

What is Rystem?

Integration with Azure BlobStorage and Repository Framework

Example from unit test with a business integration too.

services
    .AddRepository<Car, Guid>(builder =>
    {
        builder.WithBlobStorage(builder =>
        {
            builder.Settings.ConnectionString = configuration["ConnectionString:Storage"];
            builder.Settings.Prefix = "MyFolder/";
        });
    });
services
    .AddBusinessForRepository<Car, Guid>()
        .AddBusinessBeforeInsert<CarBeforeInsertBusiness>()
        .AddBusinessBeforeInsert<CarBeforeInsertBusiness2>();

You found the IRepository<Car, 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 blobstorage 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 net10.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on Rystem.RepositoryFramework.Infrastructure.Azure.Storage.Blob:

Package Downloads
Rystem.RepositoryFramework.Cache.Azure.Storage.Blob

Rystem.RepositoryFramework allows you to use correctly concepts like repository pattern, CQRS and DDD. You have interfaces for your domains, auto-generated api, auto-generated HttpClient to simplify connection "api to front-end", a functionality for auto-population in memory of your models, a functionality to simulate exceptions and waiting time from external sources to improve your implementation/business test and load test.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.4 151 2/9/2026
10.0.3 81,479 1/28/2026
10.0.1 209,309 11/12/2025
9.1.3 356 9/2/2025
9.1.2 764,830 5/29/2025
9.1.1 97,931 5/2/2025
9.0.32 186,714 4/15/2025
9.0.31 5,854 4/2/2025
9.0.30 88,866 3/26/2025
9.0.29 9,024 3/18/2025
9.0.28 259 3/17/2025
9.0.27 273 3/16/2025
9.0.26 270 3/13/2025
9.0.25 52,152 3/9/2025
9.0.21 758 3/6/2025
9.0.20 19,607 3/6/2025
9.0.19 350 3/6/2025
9.0.18 336 3/4/2025
9.0.17 226 3/1/2025
9.0.16 209 3/1/2025
Loading failed