Tolitech.CleanArchitecture.Application
1.0.0-alpha07
See the version list below for details.
dotnet add package Tolitech.CleanArchitecture.Application --version 1.0.0-alpha07
NuGet\Install-Package Tolitech.CleanArchitecture.Application -Version 1.0.0-alpha07
<PackageReference Include="Tolitech.CleanArchitecture.Application" Version="1.0.0-alpha07" />
paket add Tolitech.CleanArchitecture.Application --version 1.0.0-alpha07
#r "nuget: Tolitech.CleanArchitecture.Application, 1.0.0-alpha07"
// Install Tolitech.CleanArchitecture.Application as a Cake Addin #addin nuget:?package=Tolitech.CleanArchitecture.Application&version=1.0.0-alpha07&prerelease // Install Tolitech.CleanArchitecture.Application as a Cake Tool #tool nuget:?package=Tolitech.CleanArchitecture.Application&version=1.0.0-alpha07&prerelease
Application
Overview
Welcome to the Application repository! This repository is designed to provide fundamental interfaces for implementing the CQRS (Command Query Responsibility Segregation) pattern and the Unit of Work interface within the context of Clean Architecture.
Key Interfaces
ICommandHandler<TCommand>: Interface for command handlers, responsible for processing commands.
IQueryHandler<TQuery, TResult>: Interface for query handlers, responsible for processing queries and returning results.
IUnitOfWork: Interface for the Unit of Work pattern, allowing the grouping of multiple operations into a single transaction.
Additional Application Layer Interfaces: Other interfaces representing the application layer in Clean Architecture, promoting separation of concerns.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- MediatR (>= 12.2.0)
- Tolitech.CleanArchitecture.Domain (>= 1.0.0-alpha09)
- Tolitech.Results (>= 1.0.0-alpha10)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Tolitech.CleanArchitecture.Application:
Package | Downloads |
---|---|
Tolitech.CleanArchitecture.Infrastructure.Persistence.EntityFrameworkCore
The Infrastructure.Persistence.EntityFrameworkCore repository provides a foundational implementation for the Repository pattern, Unit of Work, and Specification Query Builder using Entity Framework Core. Simplify database interaction, promote code organization, and maintenance using these widely recognized patterns. |
|
Tolitech.CleanArchitecture.Infrastructure.Authorization
The library provides implementations for managing authorization logic. It includes classes and utilities for handling permissions, attribute-based authorization, and configuring authorization policies. |
|
Tolitech.Infrastructure.Persistence.DbConstraintValidator
A static library providing tools for managing and validating database constraint exceptions. It allows for the registration of custom constraint validators and handles exceptions efficiently. |
|
Tolitech.CleanArchitecture.Infrastructure
A comprehensive infrastructure library, providing essential services and utilities to support robust and scalable architectures. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0-alpha16 | 43 | 10/8/2024 |
1.0.0-alpha15 | 52 | 9/26/2024 |
1.0.0-alpha14 | 50 | 9/17/2024 |
1.0.0-alpha13 | 54 | 9/9/2024 |
1.0.0-alpha12 | 64 | 7/16/2024 |
1.0.0-alpha11 | 51 | 6/28/2024 |
1.0.0-alpha10 | 54 | 6/25/2024 |
1.0.0-alpha09 | 55 | 6/21/2024 |
1.0.0-alpha08 | 51 | 6/21/2024 |
1.0.0-alpha07 | 71 | 6/10/2024 |
1.0.0-alpha06 | 54 | 6/10/2024 |
1.0.0-alpha05 | 49 | 6/10/2024 |
1.0.0-alpha04 | 69 | 5/27/2024 |
1.0.0-alpha03 | 96 | 1/25/2024 |
1.0.0-alpha02 | 64 | 1/16/2024 |
1.0.0-alpha01 | 109 | 12/5/2023 |
Simplify the separation of commands and queries, promoting a clean and maintainable architecture.