Rystem.RepositoryFramework.Api.Server 4.1.8

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

What is Rystem?

Api auto-generated

In your web application you have only to add one row after service build.

 services.AddApiFromRepositoryFramework()
    .WithDescriptiveName("Repository Api")
    .WithPath(Path)
    .WithSwagger()
    .WithVersion(Version)
    .WithDocumentation()
    .WithDefaultCors("http://example.com");

var app = builder.Build();
app.UseApiFromRepositoryFramework()
   .WithNoAuthorization();

public static ApiAuthorizationBuilder UseApiFromRepositoryFramework<TEndpointRouteBuilder>(
    this TEndpointRouteBuilder app,
    string startingPath = "api")
    where TEndpointRouteBuilder : IEndpointRouteBuilder

You may add api for each service by

public static ApiAuthorizationBuilder UseApiForRepository<T>(this IEndpointRouteBuilder app,
    string startingPath = "api")

Startup example

In the example below you may find the DI for repository with string key for User model, populated with random data in memory, swagger to test the solution, the population method just after the build and the configuration of your API based on repository framework. Futhermore, we are adding a configuration for AAD to implement authentication on api.

var builder = WebApplication.CreateBuilder(args);
builder.Services
    .AddRepositoryInMemoryStorage<User>()
    .PopulateWithRandomData(x => x.Email!, 120, 5);
builder.Services.AddApiFromRepositoryFramework()
    .WithDescriptiveName("Repository Api")
    .WithPath(Path)
    .WithSwagger()
    .WithVersion(Version)
    .WithDocumentation()
    .WithDefaultCors("http://example.com");  

var app = builder.Build();
await app.Services.WarmUpAsync();
if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseApiForRepositoryFramework()
    .WithDefaultAuthorization();
app.Run();

No Authorization flow - default

var builder = WebApplication.CreateBuilder(args);
builder.Services
    .AddRepositoryInMemoryStorage<User>()
    .PopulateWithRandomData(x => x.Email!, 120, 5);
builder.Services.AddApiFromRepositoryFramework()
    .WithDescriptiveName("Repository Api")
    .WithPath(Path)
    .WithSwagger()
    .WithVersion(Version)
    .WithDocumentation()
    .WithDefaultCors("http://example.com");    

var app = builder.Build();
await app.Services.WarmUpAsync();
if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseApiForRepositoryFramework()
    .WithNoAuthorization();
app.Run();

Authorization flow - custom policies

You may configure the scoper for each method of your repository and for each repository, as you wish.

var builder = WebApplication.CreateBuilder(args);
builder.Services
    .AddRepositoryInMemoryStorage<User>()
    .PopulateWithRandomData(x => x.Email!, 120, 5);
builder.Services.AddApiFromRepositoryFramework()
    .WithDescriptiveName("Repository Api")
    .WithPath(Path)
    .WithSwagger()
    .WithVersion(Version)
    .WithDocumentation()
    .WithDefaultCors("http://example.com");     

var app = builder.Build();
await app.Services.WarmUpAsync();
if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseApiForRepositoryFramework()
    .SetPolicyForAll()
    .With("Normal User")
    .And()
    .SetPolicy(RepositoryMethod.Insert)
    .With("Admin")
    .And()
    .SetPolicy(RepositoryMethod.Update)
    .With("Admin")
    .And()
    .Finalize();

app.Run();

In this example, I'm configuring a policy named "Normal User" for all methods and all repositories, and a policy named "Admin" for the methods Insert and Update for all repositories. You can customize it repository for repository, using AddApiForRepository<T>() method.

Sample of filter usage when you use the api directly

All the requests are basic requests, the strangest request is only the query and you must use the Linq query. You may find some examples down below:

ƒ => (((ƒ.X == "dasda") AndAlso ƒ.X.Contains("dasda")) AndAlso ((ƒ.E == Guid.Parse("bf46510b-b7e6-4ba2-88da-cef208aa81f2")) Or (ƒ.Id == 32)))
ƒ => ((((ƒ.X == "dasda") AndAlso ƒ.Sol) AndAlso ƒ.X.Contains("dasda")) AndAlso ((ƒ.E == Guid.Parse("bf46510b-b7e6-4ba2-88da-cef208aa81f2")) Or (ƒ.Id == 32)))
ƒ => (((((ƒ.X == "dasda") AndAlso ƒ.Sol) AndAlso ƒ.X.Contains("dasda")) AndAlso ((ƒ.E == Guid.Parse("bf46510b-b7e6-4ba2-88da-cef208aa81f2")) Or (ƒ.Id == 32))) AndAlso ((ƒ.Type == 1) OrElse (ƒ.Type == 2)))
ƒ => (ƒ.Type == 2)
ƒ => (((((ƒ.X == "dasda") AndAlso ƒ.Sol) AndAlso (ƒ.X.Contains("dasda") OrElse ƒ.Sol.Equals(True))) AndAlso ((ƒ.E == Guid.Parse("bf46510b-b7e6-4ba2-88da-cef208aa81f2")) Or (ƒ.Id == 32))) AndAlso ((ƒ.Type == 1) OrElse (ƒ.Type == 2)))
ƒ => ((((((ƒ.X == "dasda") AndAlso ƒ.Samules.Any(x => (x == "ccccde"))) AndAlso ƒ.Sol) AndAlso (ƒ.X.Contains("dasda") OrElse ƒ.Sol.Equals(True))) AndAlso ((ƒ.E == Guid.Parse("bf46510b-b7e6-4ba2-88da-cef208aa81f2")) Or (ƒ.Id == 32))) AndAlso ((ƒ.Type == 1) OrElse (ƒ.Type == 2)))
ƒ => (ƒ.ExpirationTime > Convert.ToDateTime("7/6/2022 9:48:56 AM"))
ƒ => (ƒ.TimeSpan > new TimeSpan(1000 as long))
ƒ => Not(ƒ.Inside.Inside.A.Equals("dasdad"))
ƒ => Not(String.IsNullOrWhiteSpace(ƒ.Inside.Inside.A))
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 162 9/2/2025
9.1.2 583,628 5/29/2025
9.1.1 97,758 5/2/2025
9.0.33 178 4/30/2025
9.0.32 186,609 4/15/2025
9.0.31 5,789 4/2/2025
9.0.30 88,813 3/26/2025
9.0.29 8,965 3/18/2025
9.0.28 190 3/17/2025
9.0.27 194 3/16/2025
9.0.26 199 3/13/2025
9.0.25 52,087 3/9/2025
9.0.21 321 3/6/2025
9.0.20 19,546 3/6/2025
9.0.19 270 3/6/2025
9.0.18 258 3/4/2025
9.0.17 166 3/1/2025
9.0.16 153 3/1/2025
9.0.15 75,497 2/22/2025
9.0.14 22,554 2/18/2025
9.0.13 167 2/9/2025
9.0.12 217,674 1/13/2025
9.0.11 24,000 1/9/2025
9.0.10 130 1/9/2025
9.0.9 3,995 1/7/2025
9.0.8 12,494 1/6/2025
9.0.7 132 1/6/2025
9.0.4 92,298 12/23/2024
9.0.3 159 12/22/2024
9.0.2 10,699 12/21/2024
9.0.1 1,188 12/21/2024
9.0.0 173,052 11/16/2024
9.0.0-rc.1 110 10/18/2024
6.2.0 219,034 10/9/2024
6.1.1 173 10/9/2024
6.1.0 47,968 9/29/2024
6.0.24 210 9/11/2024
6.0.23 340,165 7/18/2024
6.0.21 197 6/18/2024
6.0.20 727,789 6/16/2024
6.0.19 30,420 6/14/2024
6.0.18 191 6/14/2024
6.0.17 171 6/14/2024
6.0.16 50,019 6/10/2024
6.0.15 172 6/9/2024
6.0.14 94,305 5/24/2024
6.0.13 216 5/23/2024
6.0.12 160 5/23/2024
6.0.11 180 5/20/2024
6.0.9 155 5/20/2024
6.0.7 136 5/18/2024
6.0.6 202 5/10/2024
6.0.5 195 5/10/2024
6.0.4 549,855 4/3/2024
6.0.3 1,469 3/25/2024
6.0.2 393,624 3/11/2024
6.0.0 1,171,191 11/21/2023
6.0.0-rc.6 155 10/25/2023
6.0.0-rc.5 115 10/25/2023
6.0.0-rc.4 120 10/23/2023
6.0.0-rc.3 105 10/19/2023
6.0.0-rc.2 121 10/18/2023
6.0.0-rc.1 114 10/16/2023
5.0.20 638,629 9/25/2023
5.0.19 977 9/10/2023
5.0.18 968 9/6/2023
5.0.17 952 9/6/2023
5.0.16 1,010 9/5/2023
5.0.15 968 9/5/2023
5.0.14 924 9/5/2023
5.0.13 925 9/1/2023
5.0.12 955 8/31/2023
5.0.11 936 8/30/2023
5.0.10 948 8/29/2023
5.0.9 974 8/24/2023
5.0.8 995 8/24/2023
5.0.7 450,449 8/23/2023
5.0.6 18,310 8/21/2023
5.0.5 5,136 8/21/2023
5.0.4 1,001 8/16/2023
5.0.3 213,386 8/2/2023
5.0.2 2,641 8/2/2023
5.0.1 12,472 8/1/2023
5.0.0 12,722 7/31/2023
4.1.26 141,498 7/20/2023
4.1.25 25,493 7/16/2023
4.1.24 398,589 6/13/2023
4.1.23 46,541 6/13/2023
4.1.22 130,369 5/30/2023
4.1.21 56,276 5/20/2023
4.1.20 405,459 4/19/2023
4.1.19 96,285 3/20/2023
4.1.18 1,180 3/20/2023
4.1.17 1,161 3/16/2023
4.1.16 1,157 3/16/2023
4.1.15 1,131 3/15/2023
4.1.14 1,716 3/9/2023
4.1.13 1,145 3/7/2023
4.1.12 1,371 2/10/2023
4.1.11 1,241 1/26/2023
4.1.10 1,222 1/22/2023
4.1.9 1,213 1/20/2023
4.1.8 1,169 1/18/2023
4.1.7 1,379 1/18/2023
4.1.6 1,244 1/17/2023
4.1.1 1,230 1/4/2023
4.1.0 1,290 1/1/2023
3.1.5 1,230 12/21/2022
3.1.3 1,242 12/12/2022
3.1.2 1,215 12/7/2022
3.1.1 1,206 12/7/2022
3.1.0 1,272 12/2/2022
3.0.29 1,256 12/1/2022
3.0.28 1,240 12/1/2022
3.0.27 1,432 11/23/2022
3.0.25 1,295 11/23/2022
3.0.24 1,270 11/18/2022
3.0.23 1,249 11/18/2022
3.0.22 1,302 11/15/2022
3.0.21 1,303 11/14/2022
3.0.20 1,283 11/13/2022
3.0.19 1,523 11/2/2022
3.0.18 1,279 11/2/2022
3.0.17 1,294 10/29/2022
3.0.16 1,303 10/29/2022
3.0.15 1,257 10/29/2022
3.0.14 1,375 10/24/2022
3.0.13 1,343 10/24/2022
3.0.12 1,376 10/17/2022
3.0.11 1,361 10/10/2022
3.0.10 1,392 10/6/2022
3.0.9 1,318 10/6/2022
3.0.8 1,307 10/6/2022
3.0.7 1,330 10/6/2022
3.0.6 1,315 10/5/2022
3.0.5 1,321 10/5/2022
3.0.4 1,292 10/5/2022
3.0.3 1,328 10/3/2022
3.0.2 1,329 9/30/2022
3.0.1 1,318 9/29/2022
2.0.17 1,340 9/29/2022
2.0.16 1,314 9/27/2022
2.0.15 1,420 9/27/2022
2.0.14 1,355 9/26/2022
2.0.13 1,406 9/26/2022
2.0.12 1,366 9/26/2022
2.0.11 1,323 9/25/2022
2.0.10 1,395 9/25/2022
2.0.9 1,395 9/22/2022
2.0.8 1,380 9/22/2022
2.0.6 1,336 9/20/2022
2.0.5 1,354 9/20/2022
2.0.4 1,349 9/20/2022
2.0.2 1,360 9/20/2022
2.0.1 1,452 9/13/2022
2.0.0 1,367 8/19/2022
1.1.24 1,395 7/30/2022
1.1.23 1,346 7/29/2022
1.1.22 1,363 7/29/2022
1.1.21 1,408 7/29/2022
1.1.20 1,385 7/29/2022
1.1.19 1,454 7/27/2022
1.1.17 1,334 7/27/2022
1.1.16 1,381 7/26/2022
1.1.15 1,405 7/25/2022
1.1.14 1,397 7/25/2022
1.1.13 1,353 7/22/2022
1.1.12 1,434 7/19/2022
1.1.11 1,401 7/19/2022
1.1.10 1,391 7/19/2022
1.1.9 1,387 7/19/2022
1.1.8 1,414 7/18/2022
1.1.7 1,386 7/18/2022
1.1.6 1,392 7/18/2022
1.1.5 1,375 7/17/2022
1.1.4 1,421 7/17/2022
1.1.3 1,419 7/17/2022
1.1.2 1,438 7/17/2022
1.1.0 1,394 7/17/2022
1.0.2 1,376 7/15/2022
1.0.1 1,338 7/15/2022
1.0.0 1,385 7/8/2022
0.10.7 1,402 7/7/2022
0.10.2 1,419 7/2/2022
0.10.1 1,351 7/1/2022
0.10.0 1,358 7/1/2022
0.9.11 1,403 6/29/2022
0.9.10 1,396 6/20/2022
0.9.9 1,363 6/11/2022
0.9.7 1,421 6/9/2022
0.9.6 1,378 6/5/2022
0.9.5 1,400 6/3/2022
0.9.4 1,389 6/3/2022
0.9.3 1,368 6/3/2022
0.9.2 1,377 5/31/2022
0.9.1 1,373 5/31/2022
0.9.0 1,356 5/31/2022