Rystem.RepositoryFramework.Api.Client 9.1.2

dotnet add package Rystem.RepositoryFramework.Api.Client --version 9.1.2
                    
NuGet\Install-Package Rystem.RepositoryFramework.Api.Client -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.Api.Client" 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.Api.Client" Version="9.1.2" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Api.Client" />
                    
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.Api.Client --version 9.1.2
                    
#r "nuget: Rystem.RepositoryFramework.Api.Client, 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.Api.Client@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.Api.Client&version=9.1.2
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Api.Client&version=9.1.2
                    
Install as a Cake Tool

What is Rystem?

Services extensions

HttpClient to use your API (example)

You can add a client for a specific url

builder.Services.AddRepository<User, string>(builder =>
{
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});

You may add a Polly policy to your api client for example:

var retryPolicy = HttpPolicyExtensions
  .HandleTransientHttpError()
  .Or<TimeoutRejectedException>()
  .RetryAsync(3);

builder.Services.AddRepository<User, string>(builder =>
{
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058")
            .ClientBuilder
        .AddPolicyHandler(retryPolicy);
});

and use it in DI with

IRepository<User, string> repository

Query and Command

In DI you install the services

services.AddCommand<User, string>(builder => {
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});
services.AddQuery<User, string>(builder => {
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});

And you may inject the objects

Please, use ICommand, IQuery and not ICommandPattern, IQueryPattern

ICommand<User, string> command
IQuery<User, string> command

With a non default key

In DI you install the services with a bool key for example.

services.AddRepository<User, bool>(builder => {
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});
services.AddCommand<User, bool>(builder => {
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});
services.AddQuery<User, bool>(builder => {
    builder
        .WithApiClient()
        .WithHttpClient("localhost:7058");
});

And you may inject the objects

Please, use ICommand, IQuery, IRepository and not ICommandPattern, IQueryPattern, IRepositoryPattern

IRepository<User, string> repository
ICommand<User, string> command
IQuery<User, string> command

Interceptors

You may add a custom interceptor for every request for every model

public static IServiceCollection AddApiClientInterceptor<TInterceptor>(this IServiceCollection services,
    ServiceLifetime serviceLifetime = ServiceLifetime.Scoped)
    where TInterceptor : class, IRepositoryClientInterceptor

or a specific interceptor for each model

public static IServiceCollection AddApiClientInterceptor<TInterceptor>(this IServiceCollection services,
    ServiceLifetime serviceLifetime = ServiceLifetime.Scoped)
    where TInterceptor : class, IRepositoryClientInterceptor

or for a string as default TKey

 public static RepositorySettings<T, TKey> AddApiClientSpecificInterceptor<T, TKey, TInterceptor>(
    this RepositorySettings<T, TKey> settings,
    ServiceLifetime serviceLifetime = ServiceLifetime.Scoped)
    where TInterceptor : class, IRepositoryClientInterceptor<T>
    where TKey : notnull   

Maybe you can use it to add a token as JWT o another pre-request things.

Default interceptor for Authentication with JWT

You may use the default interceptor to deal with the identity manager in .Net DI.

builder.Services.AddDefaultAuthorizationInterceptorForApiHttpClient();

with package

RepositoryFramework.Api.Client.Authentication.BlazorServer

or if you need to use in Wasm blazor use with

Rystem.RepositoryFramework.Api.Client.Authentication.BlazorWasm
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 (2)

Showing the top 2 NuGet packages that depend on Rystem.RepositoryFramework.Api.Client:

Package Downloads
Rystem.RepositoryFramework.Api.Client.Authentication.BlazorServer

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.

Rystem.RepositoryFramework.Api.Client.Authentication.BlazorWasm

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
9.1.2 314,331 5/29/2025
9.1.1 97,774 5/2/2025
9.0.32 186,587 4/15/2025
9.0.31 5,794 4/2/2025
9.0.30 88,789 3/26/2025
9.0.29 8,975 3/18/2025
9.0.28 183 3/17/2025
9.0.27 178 3/16/2025
9.0.26 197 3/13/2025
9.0.25 52,069 3/9/2025
9.0.21 303 3/6/2025
9.0.20 19,544 3/6/2025
9.0.19 255 3/6/2025
9.0.18 263 3/4/2025
9.0.17 142 3/1/2025
9.0.16 141 3/1/2025
9.0.15 75,493 2/22/2025
9.0.14 22,535 2/18/2025
9.0.13 160 2/9/2025
9.0.12 217,622 1/13/2025
9.0.11 24,005 1/9/2025
9.0.10 129 1/9/2025
9.0.9 4,005 1/7/2025
9.0.8 12,502 1/6/2025
9.0.7 137 1/6/2025
9.0.4 92,305 12/23/2024
9.0.3 150 12/22/2024
9.0.2 10,688 12/21/2024
9.0.1 1,190 12/21/2024
9.0.0 173,057 11/16/2024
9.0.0-rc.1 118 10/18/2024
6.2.0 219,055 10/9/2024
6.1.1 175 10/9/2024
6.1.0 47,962 9/29/2024
6.0.24 202 9/11/2024
6.0.23 340,169 7/18/2024
6.0.21 193 6/18/2024
6.0.20 727,803 6/16/2024
6.0.19 30,433 6/14/2024
6.0.18 188 6/14/2024
6.0.17 174 6/14/2024
6.0.16 50,019 6/10/2024
6.0.15 174 6/9/2024
6.0.14 94,310 5/24/2024
6.0.13 187 5/23/2024
6.0.12 172 5/23/2024
6.0.11 200 5/20/2024
6.0.9 216 5/20/2024
6.0.7 186 5/18/2024
6.0.6 156 5/10/2024
6.0.5 166 5/10/2024
6.0.4 549,823 4/3/2024
6.0.3 214 3/25/2024
6.0.2 393,503 3/11/2024
6.0.0 1,170,098 11/21/2023
6.0.0-rc.6 156 10/25/2023
6.0.0-rc.5 113 10/25/2023
6.0.0-rc.4 106 10/23/2023
6.0.0-rc.3 110 10/19/2023
6.0.0-rc.2 111 10/18/2023
6.0.0-rc.1 106 10/16/2023
5.0.20 638,748 9/25/2023
5.0.19 382 9/10/2023
5.0.18 339 9/6/2023
5.0.17 300 9/6/2023
5.0.16 305 9/5/2023
5.0.15 286 9/5/2023
5.0.14 320 9/5/2023
5.0.13 309 9/1/2023
5.0.12 306 8/31/2023
5.0.11 268 8/30/2023
5.0.10 294 8/29/2023
5.0.9 334 8/24/2023
5.0.8 325 8/24/2023
5.0.7 449,779 8/23/2023
5.0.6 17,621 8/21/2023
5.0.5 4,408 8/21/2023
5.0.4 255 8/16/2023
5.0.3 212,546 8/2/2023
5.0.2 1,828 8/2/2023
5.0.1 11,636 8/1/2023
5.0.0 11,923 7/31/2023
4.1.26 140,755 7/20/2023
4.1.25 24,718 7/16/2023
4.1.24 397,910 6/13/2023
4.1.23 45,784 6/13/2023
4.1.22 129,175 5/30/2023
4.1.21 55,515 5/20/2023
4.1.20 404,653 4/19/2023
4.1.19 95,373 3/20/2023
4.1.18 359 3/20/2023
4.1.17 357 3/16/2023
4.1.16 339 3/16/2023
4.1.15 361 3/15/2023
4.1.14 941 3/9/2023
4.1.13 364 3/7/2023
4.1.12 466 2/10/2023
4.1.11 429 1/26/2023
4.1.10 445 1/22/2023
4.1.9 408 1/20/2023
4.1.8 444 1/18/2023
4.1.7 554 1/18/2023
4.1.6 411 1/17/2023
4.1.1 444 1/4/2023
4.1.0 419 1/1/2023
3.1.5 418 12/21/2022
3.1.3 470 12/12/2022
3.1.2 404 12/7/2022
3.1.1 420 12/7/2022
3.1.0 493 12/2/2022
3.0.29 454 12/1/2022
3.0.28 453 12/1/2022
3.0.27 644 11/23/2022
3.0.25 447 11/23/2022
3.0.24 508 11/18/2022
3.0.23 468 11/18/2022
3.0.22 488 11/15/2022
3.0.21 486 11/14/2022
3.0.20 497 11/13/2022
3.0.19 667 11/2/2022
3.0.18 515 11/2/2022
3.0.17 515 10/29/2022
3.0.16 535 10/29/2022
3.0.15 519 10/29/2022
3.0.14 554 10/24/2022
3.0.13 560 10/24/2022
3.0.12 611 10/17/2022
3.0.11 563 10/10/2022
3.0.10 575 10/6/2022
3.0.9 543 10/6/2022
3.0.8 516 10/6/2022
3.0.7 543 10/6/2022
3.0.6 541 10/5/2022
3.0.5 524 10/5/2022
3.0.4 547 10/5/2022
3.0.3 596 10/3/2022
3.0.2 552 9/30/2022
3.0.1 550 9/29/2022
2.0.17 575 9/29/2022
2.0.16 555 9/27/2022
2.0.15 625 9/27/2022
2.0.14 640 9/26/2022
2.0.13 623 9/26/2022
2.0.12 590 9/26/2022
2.0.11 582 9/25/2022
2.0.10 608 9/25/2022
2.0.9 602 9/22/2022
2.0.8 573 9/22/2022
2.0.6 588 9/20/2022
2.0.5 619 9/20/2022
2.0.4 577 9/20/2022
2.0.2 555 9/20/2022
2.0.1 610 9/13/2022
2.0.0 576 8/19/2022
1.1.24 618 7/30/2022
1.1.23 589 7/29/2022
1.1.22 601 7/29/2022
1.1.21 861 7/29/2022
1.1.20 619 7/29/2022
1.1.19 640 7/27/2022
1.1.17 609 7/27/2022
1.1.16 633 7/26/2022
1.1.15 610 7/25/2022
1.1.14 632 7/25/2022
1.1.13 619 7/22/2022
1.1.12 606 7/19/2022
1.1.11 597 7/19/2022
1.1.10 603 7/19/2022
1.1.9 631 7/19/2022
1.1.8 645 7/18/2022
1.1.7 644 7/18/2022
1.1.6 607 7/18/2022
1.1.5 583 7/17/2022
1.1.4 618 7/17/2022
1.1.3 642 7/17/2022
1.1.2 651 7/17/2022
1.1.0 619 7/17/2022
1.0.2 599 7/15/2022
1.0.1 607 7/15/2022
1.0.0 626 7/8/2022
0.10.7 608 7/7/2022
0.10.2 639 7/2/2022
0.10.1 606 7/1/2022
0.10.0 623 7/1/2022
0.9.12 647 6/29/2022
0.9.11 660 6/21/2022
0.9.10 616 6/20/2022
0.9.9 589 6/11/2022
0.9.7 601 6/9/2022
0.9.6 589 6/5/2022
0.9.5 571 6/3/2022
0.9.3 564 6/3/2022
0.9.2 609 5/31/2022
0.9.1 612 5/31/2022
0.9.0 583 5/31/2022