Schemata.Application.Complex.Targets 1.0.0-preview.24217.16

This is a prerelease version of Schemata.Application.Complex.Targets.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Schemata.Application.Complex.Targets --version 1.0.0-preview.24217.16
NuGet\Install-Package Schemata.Application.Complex.Targets -Version 1.0.0-preview.24217.16
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="Schemata.Application.Complex.Targets" Version="1.0.0-preview.24217.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Schemata.Application.Complex.Targets --version 1.0.0-preview.24217.16
#r "nuget: Schemata.Application.Complex.Targets, 1.0.0-preview.24217.16"
#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.
// Install Schemata.Application.Complex.Targets as a Cake Addin
#addin nuget:?package=Schemata.Application.Complex.Targets&version=1.0.0-preview.24217.16&prerelease

// Install Schemata.Application.Complex.Targets as a Cake Tool
#tool nuget:?package=Schemata.Application.Complex.Targets&version=1.0.0-preview.24217.16&prerelease

Schemata

Application Framework aims on modular business applications.

GitHub Workflow Status Codecov license

netstandard2.0 netstandard2.1 net6.0 net8.0

Quick Start

dotnet new web
dotnet add package --prerelease Schemata.Application.Complex.Targets
var builder = WebApplication.CreateBuilder(args)
                            .UseSchemata(schema => {
                                 schema.UseLogging();
                                 schema.UseDeveloperExceptionPage();

                                 schema.ConfigureServices(services => {
                                     services.AddTransient(typeof(IRepositoryAddAsyncAdvice<>), typeof(MyAdviceAddAsync<>));

                                     services.AddRepository(typeof(MyRepository<>))
                                             .UseEntityFrameworkCore<MyDbContext>((sp, options) => options.UseSqlServer(schema.Configuration.GetConnectionString("Default")));

                                     services.AddDistributedMemoryCache();
                                 });

                                 schema.UseForwardedHeaders();
                                 schema.UseHttps();
                                 schema.UseCookiePolicy();

                                 schema.UseSession();

                                 schema.UseCors();
                                 schema.UseRouting();
                                 schema.UseControllers();
                                 schema.UseJsonSerializer();

                                 schema.UseModular();

                                 schema.UseIdentity();
                                 schema.UseAuthorization(options => {
                                            options.AddEphemeralEncryptionKey()
                                                   .AddEphemeralSigningKey();
                                        })
                                       .UseCodeFlow()
                                       .UseRefreshTokenFlow()
                                       .UseDeviceFlow()
                                       .UseIntrospection()
                                       .UseCaching();
                                 schema.UseWorkflow();

                                 // You can also utilize UseAutoMapper() once you've incorporated the Schemata.Mapping.AutoMapper package into your project.
                                 schema.UseMapster()
                                       .Map<Source, Destination>(map => {
                                            map.For(d => d.DisplayName).From(s => s.Name);
                                            map.For(d => d.Age).From(s => s.Age).Ignore((s, d) => s.Age < 18);
                                            map.For(d => d.Grade).Ignore()
                                               .For(d => d.Sex).From(s => s.Sex.ToString());
                                        });

                                 schema.UseResource()
                                       .MapHttp()
                             });

var app = builder.Build();

app.Run();

Fields

Features

Features are modular components that can be integrated during the application startup process.

Each feature must implement the ISimpleFeature interface.

Features are characterized by Order and Priority, both of which are Int32 values. The Order determines the sequence in which the ConfigureServices methods are invoked. The Priority establishes the sequence for invoking the Configure<Application|Endpoints> methods.

The range [0, 1_000_000_000) and (2_147_000_000, 2_147_400_000] for Order and Priority is reserved for built-in features and Schemata extensions.

Built-in Features

A built-in feature can be activated by calling the UseXXX method on the SchemataBuilder instance. These features may also have additional configuration methods.

Priority Feature Description
100_110_000 Logging Asp.Net Logging Middleware
100_120_000 HttpLogging Asp.Net HTTP Logging Middleware
100_130_000 W3CLogging Asp.Net W3C Logging Middleware
110_000_000 DeveloperExceptionPage Asp.Net Developer Exception Page Middleware
110_100_000 ForwardedHeaders Asp.Net Forwarded Headers Middleware
120_000_000 Https Asp.Net HTTPS & HTTPS Redirection Middlewares
130_000_000 CookiePolicy Asp.Net Cookie Policy Middleware
140_000_000 Routing Asp.Net Routing Middleware
141_100_000 Quota Asp.Net Rate Limiter Middleware
150_000_000 Cors Asp.Net CORS Middleware
160_000_000 Authentication Asp.Net Authentication & Authorization Middlewares
170_000_000 Session Asp.Net Session Middleware
210_000_000 Controllers Asp.Net MVC Middlewares, without Views
210_100_000 JsonSerializer Configure System.Text.Json to use snake_case and handle JavaScript's 53-bits integers

Extension Features

An extension feature can be activated in the same way as a built-in feature.

Priority Package Feature Description
310_000_000 Schemata.Identity.Foundation Identity Schemata Identity Foundation
320_000_000 Schemata.Authorization.Foundation Authorization Schemata Authorization Foundation
340_000_000 Schemata.Mapping.Foundation Mapping Schemata Mapper Foundation
350_000_000 Schemata.Workflow.Foundation Workflow Schemata Workflow Foundation
360_000_000 Schemata.Resource.Foundation Resource Schemata Resource Service
360_100_000 Schemata.Resource.Http Resource (MapHttp) Schemata Resource Service for HTTP
2_147_400_000 Schemata.Modular Modular Modularization

Compliance

Schemata is designed to comply with .NET Standard 2.0, .NET Standard 2.1, and the two most recent .NET Long-Term Support (LTS) versions, which are .NET 6.0 and .NET 8.0 at the time of writing.

Some packages may have additional compliance requirements, which are documented below.

Package Compliance
Schemata.DSL netstandard2.0
Schemata.Core net6.0 net8.0
Schemata.Modular net6.0 net8.0
Schemata.Authorization.Foundation net6.0 net8.0
Schemata.Identity.Foundation net6.0 net8.0
Schemata.Mapping.Foundation net6.0 net8.0
Schemata.Resource.Foundation net6.0 net8.0
Schemata.Workflow.Foundation net6.0 net8.0

Schemata.Authorization.Foundation

Schemata Authorization Foundation is designed to comply with the OpenID Connect Core 1.0 specification.

Schemata.Identity.Foundation

Schemata Identity Foundation is designed to comply with Asp.Net Core Identity.

Additionally, we bring the Bearer Token Authentication Scheme and Core Identity API to platforms that do not support it.

Schemata.Mapping.Foundation

The Schemata Mapping Foundation is designed to be compatible with various mapping libraries, including AutoMapper and Mapster, among others.

It provides a unified interface for these libraries, enabling developers to switch between them without modifying their code.

Schemata.Workflow.Foundation

Unfortunately, the Schemata Workflow Foundation is not yet compliant with enterprise standards such as BPMN 2.0.

There are no supported framework assets in this 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
1.0.0-preview.24227.10 42 4/27/2024
1.0.0-preview.24226.92 39 4/26/2024
1.0.0-preview.24226.39 42 4/26/2024
1.0.0-preview.24225.65 37 4/25/2024
1.0.0-preview.24225.61 31 4/25/2024
1.0.0-preview.24225.33 33 4/25/2024
1.0.0-preview.24224.26 43 4/24/2024
1.0.0-preview.24223.62 40 4/23/2024
1.0.0-preview.24223.23 41 4/23/2024
1.0.0-preview.24222.70 46 4/22/2024
1.0.0-preview.24222.23 39 4/22/2024
1.0.0-preview.24222.21 42 4/22/2024
1.0.0-preview.24222.20 42 4/22/2024
1.0.0-preview.24221.62 46 4/21/2024
1.0.0-preview.24221.60 38 4/21/2024
1.0.0-preview.24219.37 43 4/19/2024
1.0.0-preview.24219.35 39 4/19/2024
1.0.0-preview.24218.65 35 4/18/2024
1.0.0-preview.24217.50 63 4/17/2024
1.0.0-preview.24217.16 40 4/17/2024
1.0.0-preview.24217.15 42 4/17/2024
1.0.0-preview.24217.9 39 4/17/2024
1.0.0-preview.24216.60 49 4/16/2024
1.0.0-preview.24216.55 43 4/16/2024
1.0.0-preview.24215.70 40 4/15/2024
1.0.0-preview.24213.26 46 4/13/2024
1.0.0-preview.24213.25 39 4/13/2024
1.0.0-preview.24213.21 44 4/13/2024
1.0.0-preview.24213.20 41 4/13/2024
1.0.0-preview.24213.11 44 4/13/2024
1.0.0-preview.24213.8 44 4/13/2024
1.0.0-preview.24213.5 41 4/13/2024
1.0.0-preview.24212.62 41 4/12/2024
1.0.0-preview.24212.52 39 4/12/2024
1.0.0-preview.24212.51 34 4/12/2024
1.0.0-preview.24212.43 36 4/12/2024
1.0.0-preview.24212.37 46 4/12/2024
1.0.0-preview.24212.36 38 4/12/2024
1.0.0-preview.24212.29 42 4/12/2024
1.0.0-preview.24212.24 40 4/12/2024
1.0.0-preview.24212.17 42 4/12/2024
1.0.0-preview.24211.59 36 4/11/2024
1.0.0-preview.24211.57 36 4/11/2024
1.0.0-preview.24211.54 35 4/11/2024
1.0.0-preview.24211.51 35 4/11/2024
1.0.0-preview.24211.50 36 4/11/2024
1.0.0-preview.24211.49 35 4/11/2024
1.0.0-preview.24211.47 36 4/11/2024
1.0.0-preview.24211.24 46 4/11/2024
1.0.0-preview.24211.23 41 4/11/2024
1.0.0-preview.24211.21 34 4/11/2024
1.0.0-preview.24211.18 41 4/11/2024
1.0.0-preview.24210.56 37 4/10/2024
1.0.0-preview.24210.52 34 4/10/2024
1.0.0-preview.24210.51 32 4/10/2024
1.0.0-preview.24210.49 36 4/10/2024
1.0.0-preview.24210.43 41 4/10/2024
1.0.0-preview.24210.42 34 4/10/2024
1.0.0-preview.24210.34 34 4/10/2024
1.0.0-preview.24210.31 33 4/10/2024
1.0.0-preview.24210.30 35 4/10/2024
1.0.0-preview.24209.57 44 4/9/2024
1.0.0-preview.24209.56 49 4/9/2024
1.0.0-preview.24209.35 39 4/9/2024
1.0.0-preview.24209.19 45 4/9/2024
1.0.0-preview.24209.9 49 4/9/2024
1.0.0-preview.24208.59 47 4/8/2024
1.0.0-preview.24207.28 52 4/7/2024
1.0.0-preview.24207.14 48 4/7/2024
1.0.0-preview.24207.11 47 4/7/2024
1.0.0-preview.24207.8 43 4/7/2024
1.0.0-preview.24206.54 44 4/6/2024
1.0.0-preview.24204.4 51 4/4/2024
1.0.0-preview.24204.3 43 4/4/2024
1.0.0-preview.24204.2 42 4/4/2024
1.0.0-preview.24203.51 41 4/3/2024
1.0.0-preview.24202.68 46 4/2/2024
1.0.0-preview.24181.28 52 3/31/2024
1.0.0-preview.24181.19 38 3/31/2024
1.0.0-preview.24181.18 56 3/31/2024
1.0.0-preview.24181.10 43 3/31/2024
1.0.0-preview.24180.84 38 3/30/2024
1.0.0-preview.24180.78 45 3/30/2024
1.0.0-preview.24180.70 47 3/30/2024
1.0.0-preview.24180.68 42 3/30/2024
1.0.0-preview.24180.66 42 3/30/2024
1.0.0-preview.24180.39 40 3/30/2024
1.0.0-preview.24179.42 41 3/29/2024
1.0.0-preview.24179.41 38 3/29/2024
1.0.0-preview.24179.39 40 3/29/2024
1.0.0-preview.24179.36 41 3/29/2024
1.0.0-preview.24179.18 46 3/29/2024
1.0.0-preview.24178.52 44 3/28/2024
1.0.0-preview.24177.13 44 3/27/2024
1.0.0-preview.24176.57 26 3/26/2024
1.0.0-preview.24176.43 26 3/26/2024
1.0.0-preview.24176.38 42 3/26/2024
1.0.0-preview.24175.48 41 3/25/2024
1.0.0-preview.24175.44 38 3/25/2024
1.0.0-preview.24175.38 44 3/25/2024
1.0.0-preview.24175.32 44 3/25/2024
1.0.0-preview.24175.24 42 3/25/2024
1.0.0-preview.24174.7 46 3/24/2024
1.0.0-preview.24173.57 44 3/23/2024
1.0.0-preview.24173.48 42 3/23/2024
1.0.0-preview.24173.37 42 3/23/2024
1.0.0-preview.24173.34 44 3/23/2024
1.0.0-preview.24172.52 43 3/22/2024
1.0.0-preview.24172.51 49 3/22/2024
1.0.0-preview.24172.50 37 3/22/2024
1.0.0-preview.24172.48 45 3/22/2024
1.0.0-preview.24172.33 45 3/22/2024
1.0.0-preview.24169.56 58 3/19/2024
1.0.0-preview.24169.44 43 3/19/2024