Rystem.RepositoryFramework.Api.Client
9.0.19
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Api.Client --version 9.0.19
NuGet\Install-Package Rystem.RepositoryFramework.Api.Client -Version 9.0.19
<PackageReference Include="Rystem.RepositoryFramework.Api.Client" Version="9.0.19" />
<PackageVersion Include="Rystem.RepositoryFramework.Api.Client" Version="9.0.19" />
<PackageReference Include="Rystem.RepositoryFramework.Api.Client" />
paket add Rystem.RepositoryFramework.Api.Client --version 9.0.19
#r "nuget: Rystem.RepositoryFramework.Api.Client, 9.0.19"
#:package Rystem.RepositoryFramework.Api.Client@9.0.19
#addin nuget:?package=Rystem.RepositoryFramework.Api.Client&version=9.0.19
#tool nuget:?package=Rystem.RepositoryFramework.Api.Client&version=9.0.19
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 | Versions 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. |
-
net9.0
- Microsoft.Extensions.Http (>= 9.0.2)
- Microsoft.Extensions.Http.Polly (>= 9.0.2)
- Polly (>= 8.5.2)
- Rystem.RepositoryFramework.Abstractions (>= 9.0.19)
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 | 254,068 | 5/29/2025 |
9.1.1 | 97,764 | 5/2/2025 |
9.0.32 | 186,582 | 4/15/2025 |
9.0.31 | 5,783 | 4/2/2025 |
9.0.30 | 88,781 | 3/26/2025 |
9.0.29 | 8,965 | 3/18/2025 |
9.0.28 | 174 | 3/17/2025 |
9.0.27 | 173 | 3/16/2025 |
9.0.26 | 190 | 3/13/2025 |
9.0.25 | 52,062 | 3/9/2025 |
9.0.21 | 296 | 3/6/2025 |
9.0.20 | 19,537 | 3/6/2025 |
9.0.19 | 247 | 3/6/2025 |
9.0.18 | 254 | 3/4/2025 |
9.0.17 | 137 | 3/1/2025 |
9.0.16 | 134 | 3/1/2025 |
9.0.15 | 75,484 | 2/22/2025 |
9.0.14 | 22,528 | 2/18/2025 |
9.0.13 | 151 | 2/9/2025 |
9.0.12 | 217,614 | 1/13/2025 |
9.0.11 | 23,998 | 1/9/2025 |
9.0.10 | 122 | 1/9/2025 |
9.0.9 | 3,998 | 1/7/2025 |
9.0.8 | 12,497 | 1/6/2025 |
9.0.7 | 132 | 1/6/2025 |
9.0.4 | 92,300 | 12/23/2024 |
9.0.3 | 143 | 12/22/2024 |
9.0.2 | 10,683 | 12/21/2024 |
9.0.1 | 1,183 | 12/21/2024 |
9.0.0 | 173,050 | 11/16/2024 |
9.0.0-rc.1 | 110 | 10/18/2024 |
6.2.0 | 219,049 | 10/9/2024 |
6.1.1 | 167 | 10/9/2024 |
6.1.0 | 47,956 | 9/29/2024 |
6.0.24 | 195 | 9/11/2024 |
6.0.23 | 340,163 | 7/18/2024 |
6.0.21 | 185 | 6/18/2024 |
6.0.20 | 727,796 | 6/16/2024 |
6.0.19 | 30,427 | 6/14/2024 |
6.0.18 | 183 | 6/14/2024 |
6.0.17 | 169 | 6/14/2024 |
6.0.16 | 50,013 | 6/10/2024 |
6.0.15 | 169 | 6/9/2024 |
6.0.14 | 94,304 | 5/24/2024 |
6.0.13 | 181 | 5/23/2024 |
6.0.12 | 164 | 5/23/2024 |
6.0.11 | 194 | 5/20/2024 |
6.0.9 | 211 | 5/20/2024 |
6.0.7 | 180 | 5/18/2024 |
6.0.6 | 152 | 5/10/2024 |
6.0.5 | 160 | 5/10/2024 |
6.0.4 | 549,817 | 4/3/2024 |
6.0.3 | 209 | 3/25/2024 |
6.0.2 | 393,498 | 3/11/2024 |
6.0.0 | 1,170,094 | 11/21/2023 |
6.0.0-rc.6 | 149 | 10/25/2023 |
6.0.0-rc.5 | 107 | 10/25/2023 |
6.0.0-rc.4 | 98 | 10/23/2023 |
6.0.0-rc.3 | 103 | 10/19/2023 |
6.0.0-rc.2 | 105 | 10/18/2023 |
6.0.0-rc.1 | 99 | 10/16/2023 |
5.0.20 | 638,738 | 9/25/2023 |
5.0.19 | 372 | 9/10/2023 |
5.0.18 | 329 | 9/6/2023 |
5.0.17 | 289 | 9/6/2023 |
5.0.16 | 295 | 9/5/2023 |
5.0.15 | 277 | 9/5/2023 |
5.0.14 | 312 | 9/5/2023 |
5.0.13 | 298 | 9/1/2023 |
5.0.12 | 295 | 8/31/2023 |
5.0.11 | 258 | 8/30/2023 |
5.0.10 | 284 | 8/29/2023 |
5.0.9 | 324 | 8/24/2023 |
5.0.8 | 312 | 8/24/2023 |
5.0.7 | 449,766 | 8/23/2023 |
5.0.6 | 17,606 | 8/21/2023 |
5.0.5 | 4,396 | 8/21/2023 |
5.0.4 | 238 | 8/16/2023 |
5.0.3 | 212,534 | 8/2/2023 |
5.0.2 | 1,816 | 8/2/2023 |
5.0.1 | 11,624 | 8/1/2023 |
5.0.0 | 11,911 | 7/31/2023 |
4.1.26 | 140,742 | 7/20/2023 |
4.1.25 | 24,706 | 7/16/2023 |
4.1.24 | 397,896 | 6/13/2023 |
4.1.23 | 45,768 | 6/13/2023 |
4.1.22 | 129,160 | 5/30/2023 |
4.1.21 | 55,502 | 5/20/2023 |
4.1.20 | 404,640 | 4/19/2023 |
4.1.19 | 95,356 | 3/20/2023 |
4.1.18 | 344 | 3/20/2023 |
4.1.17 | 340 | 3/16/2023 |
4.1.16 | 327 | 3/16/2023 |
4.1.15 | 347 | 3/15/2023 |
4.1.14 | 923 | 3/9/2023 |
4.1.13 | 351 | 3/7/2023 |
4.1.12 | 450 | 2/10/2023 |
4.1.11 | 414 | 1/26/2023 |
4.1.10 | 431 | 1/22/2023 |
4.1.9 | 393 | 1/20/2023 |
4.1.8 | 431 | 1/18/2023 |
4.1.7 | 539 | 1/18/2023 |
4.1.6 | 396 | 1/17/2023 |
4.1.1 | 431 | 1/4/2023 |
4.1.0 | 404 | 1/1/2023 |
3.1.5 | 401 | 12/21/2022 |
3.1.3 | 454 | 12/12/2022 |
3.1.2 | 388 | 12/7/2022 |
3.1.1 | 407 | 12/7/2022 |
3.1.0 | 479 | 12/2/2022 |
3.0.29 | 442 | 12/1/2022 |
3.0.28 | 440 | 12/1/2022 |
3.0.27 | 630 | 11/23/2022 |
3.0.25 | 434 | 11/23/2022 |
3.0.24 | 495 | 11/18/2022 |
3.0.23 | 450 | 11/18/2022 |
3.0.22 | 475 | 11/15/2022 |
3.0.21 | 471 | 11/14/2022 |
3.0.20 | 481 | 11/13/2022 |
3.0.19 | 652 | 11/2/2022 |
3.0.18 | 500 | 11/2/2022 |
3.0.17 | 501 | 10/29/2022 |
3.0.16 | 519 | 10/29/2022 |
3.0.15 | 501 | 10/29/2022 |
3.0.14 | 539 | 10/24/2022 |
3.0.13 | 544 | 10/24/2022 |
3.0.12 | 597 | 10/17/2022 |
3.0.11 | 547 | 10/10/2022 |
3.0.10 | 558 | 10/6/2022 |
3.0.9 | 528 | 10/6/2022 |
3.0.8 | 500 | 10/6/2022 |
3.0.7 | 527 | 10/6/2022 |
3.0.6 | 526 | 10/5/2022 |
3.0.5 | 509 | 10/5/2022 |
3.0.4 | 533 | 10/5/2022 |
3.0.3 | 580 | 10/3/2022 |
3.0.2 | 538 | 9/30/2022 |
3.0.1 | 533 | 9/29/2022 |
2.0.17 | 559 | 9/29/2022 |
2.0.16 | 540 | 9/27/2022 |
2.0.15 | 609 | 9/27/2022 |
2.0.14 | 625 | 9/26/2022 |
2.0.13 | 608 | 9/26/2022 |
2.0.12 | 574 | 9/26/2022 |
2.0.11 | 567 | 9/25/2022 |
2.0.10 | 591 | 9/25/2022 |
2.0.9 | 586 | 9/22/2022 |
2.0.8 | 559 | 9/22/2022 |
2.0.6 | 574 | 9/20/2022 |
2.0.5 | 605 | 9/20/2022 |
2.0.4 | 563 | 9/20/2022 |
2.0.2 | 540 | 9/20/2022 |
2.0.1 | 595 | 9/13/2022 |
2.0.0 | 556 | 8/19/2022 |
1.1.24 | 599 | 7/30/2022 |
1.1.23 | 574 | 7/29/2022 |
1.1.22 | 582 | 7/29/2022 |
1.1.21 | 845 | 7/29/2022 |
1.1.20 | 603 | 7/29/2022 |
1.1.19 | 623 | 7/27/2022 |
1.1.17 | 593 | 7/27/2022 |
1.1.16 | 613 | 7/26/2022 |
1.1.15 | 589 | 7/25/2022 |
1.1.14 | 615 | 7/25/2022 |
1.1.13 | 602 | 7/22/2022 |
1.1.12 | 589 | 7/19/2022 |
1.1.11 | 576 | 7/19/2022 |
1.1.10 | 585 | 7/19/2022 |
1.1.9 | 613 | 7/19/2022 |
1.1.8 | 627 | 7/18/2022 |
1.1.7 | 627 | 7/18/2022 |
1.1.6 | 591 | 7/18/2022 |
1.1.5 | 565 | 7/17/2022 |
1.1.4 | 599 | 7/17/2022 |
1.1.3 | 620 | 7/17/2022 |
1.1.2 | 633 | 7/17/2022 |
1.1.0 | 602 | 7/17/2022 |
1.0.2 | 580 | 7/15/2022 |
1.0.1 | 587 | 7/15/2022 |
1.0.0 | 608 | 7/8/2022 |
0.10.7 | 590 | 7/7/2022 |
0.10.2 | 621 | 7/2/2022 |
0.10.1 | 589 | 7/1/2022 |
0.10.0 | 606 | 7/1/2022 |
0.9.12 | 631 | 6/29/2022 |
0.9.11 | 643 | 6/21/2022 |
0.9.10 | 591 | 6/20/2022 |
0.9.9 | 571 | 6/11/2022 |
0.9.7 | 580 | 6/9/2022 |
0.9.6 | 571 | 6/5/2022 |
0.9.5 | 552 | 6/3/2022 |
0.9.3 | 544 | 6/3/2022 |
0.9.2 | 589 | 5/31/2022 |
0.9.1 | 595 | 5/31/2022 |
0.9.0 | 564 | 5/31/2022 |