Tolitech.CleanArchitecture.Application 1.0.0-alpha03

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-alpha03
NuGet\Install-Package Tolitech.CleanArchitecture.Application -Version 1.0.0-alpha03
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-alpha03" />
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-alpha03
#r "nuget: Tolitech.CleanArchitecture.Application, 1.0.0-alpha03"
#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-alpha03&prerelease

// Install Tolitech.CleanArchitecture.Application as a Cake Tool
#tool nuget:?package=Tolitech.CleanArchitecture.Application&version=1.0.0-alpha03&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 (2)

Showing the top 2 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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-alpha07 52 6/10/2024
1.0.0-alpha06 38 6/10/2024
1.0.0-alpha05 37 6/10/2024
1.0.0-alpha04 53 5/27/2024
1.0.0-alpha03 88 1/25/2024
1.0.0-alpha02 56 1/16/2024
1.0.0-alpha01 101 12/5/2023

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