Tolitech.CleanArchitecture.Application 1.0.0-alpha06

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

// Install Tolitech.CleanArchitecture.Application as a Cake Tool
#tool nuget:?package=Tolitech.CleanArchitecture.Application&version=1.0.0-alpha06&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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 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.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-alpha14 35 9/17/2024
1.0.0-alpha13 44 9/9/2024
1.0.0-alpha12 60 7/16/2024
1.0.0-alpha11 49 6/28/2024
1.0.0-alpha10 53 6/25/2024
1.0.0-alpha09 53 6/21/2024
1.0.0-alpha08 48 6/21/2024
1.0.0-alpha07 68 6/10/2024
1.0.0-alpha06 52 6/10/2024
1.0.0-alpha05 47 6/10/2024
1.0.0-alpha04 68 5/27/2024
1.0.0-alpha03 92 1/25/2024
1.0.0-alpha02 61 1/16/2024
1.0.0-alpha01 106 12/5/2023

Simplify the separation of commands and queries, promoting a clean and maintainable architecture.