PANiXiDA.Core.Application 1.0.2

dotnet add package PANiXiDA.Core.Application --version 1.0.2
                    
NuGet\Install-Package PANiXiDA.Core.Application -Version 1.0.2
                    
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="PANiXiDA.Core.Application" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PANiXiDA.Core.Application" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="PANiXiDA.Core.Application" />
                    
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 PANiXiDA.Core.Application --version 1.0.2
                    
#r "nuget: PANiXiDA.Core.Application, 1.0.2"
                    
#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 PANiXiDA.Core.Application@1.0.2
                    
#: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=PANiXiDA.Core.Application&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=PANiXiDA.Core.Application&version=1.0.2
                    
Install as a Cake Tool

PANiXiDA.Core.Application

PANiXiDA.Core.Application is a .NET library with application-layer abstractions for Clean Architecture, CQRS, and DDD-based services.

It defines contracts and small reusable building blocks for commands, queries, request behaviors, domain event publishing, unit-of-work orchestration, repositories, aggregate tracking, and read-side paging helpers. The package intentionally does not provide a concrete mediator, database provider, dependency injection module, or transport-specific implementation.

Status

CI NuGet NuGet downloads Target Framework License

Features

  • CQRS request contracts: ICommand<TResult>, IQuery<TResult>, and IRequest<TResult>.
  • Mediator contracts for command/query dispatch and handler implementation.
  • Pipeline behavior contracts for before, after, and finally request stages.
  • Built-in behaviors for transaction start, save, commit, cleanup, and domain event publishing.
  • Event bus and event handler abstractions for DomainEvent integration.
  • Unit of work, repository, and aggregate tracker abstractions for DDD persistence boundaries.
  • Read-side helper models for page-based pagination, cursor pagination, sorting, and filtering.

Requirements

  • .NET 10 SDK
  • Nullable reference types enabled in consuming projects is recommended

Installation

<ItemGroup>
  <PackageReference Include="PANiXiDA.Core.Application" Version="1.0.0" />
</ItemGroup>

Basic Usage

Command Contract

using PANiXiDA.Core.Application.Messaging.Mediator.Contracts;
using PANiXiDA.Core.Application.Messaging.Mediator.Handlers;
using PANiXiDA.Core.ResultPattern;

public sealed record PingCommand : ICommand<Result>;

public sealed class PingCommandHandler : ICommandHandler<PingCommand, Result>
{
    public Task<Result> HandleAsync(
        PingCommand command,
        CancellationToken cancellationToken)
    {
        return Task.FromResult(Result.Success());
    }
}

Query Contract

using PANiXiDA.Core.Application.Messaging.Mediator.Contracts;
using PANiXiDA.Core.Application.Messaging.Mediator.Handlers;
using PANiXiDA.Core.ResultPattern;

public sealed record GetNameQuery(Guid Id) : IQuery<Result<string>>;

public sealed class GetNameQueryHandler : IQueryHandler<GetNameQuery, Result<string>>
{
    public Task<Result<string>> HandleAsync(
        GetNameQuery query,
        CancellationToken cancellationToken)
    {
        return Task.FromResult(Result.Success("PANiXiDA"));
    }
}

Page-Based Query Result

using PANiXiDA.Core.Application.Querying.Pagination;

var result = PaginationResult<string>.Create(
    items: ["first", "second"],
    pageNumber: 1,
    pageSize: 10,
    totalCount: 2);

var hasNextPage = result.HasNextPage;

Cursor-Based Query Result

using PANiXiDA.Core.Application.Querying.Cursor;

var result = CursorPaginationResult<string>.Create(
    items: ["first", "second"],
    limit: 10,
    nextCursor: "cursor-2",
    hasNextPage: true);

Request Behaviors

The package includes reusable mediator behavior implementations for command transaction orchestration and domain event publication:

  • BeginTransactionBehavior<TCommand, TResult> starts a transaction before a command handler runs.
  • SaveChangesBehavior<TCommand, TResult> persists changes after a successful command result when a transaction is active.
  • PublishDomainEventsBehavior<TRequest, TResult> publishes domain events collected from tracked aggregate roots after a successful request result and clears tracked events after a failed result or completed successful publication.
  • CommitTransactionBehavior<TCommand, TResult> commits the active transaction after a successful command result.
  • CleanupTransactionBehavior<TCommand, TResult> rolls back failed command transactions and disposes transaction resources.

A consuming mediator implementation should register these behaviors in a deterministic order. A typical command pipeline is:

before:  BeginTransactionBehavior
handler: ICommandHandler<TCommand, TResult>
after:   SaveChangesBehavior
after:   PublishDomainEventsBehavior
after:   CommitTransactionBehavior
finally: CleanupTransactionBehavior

The exact registration mechanism depends on the mediator or composition root used by the consuming application.

API Overview

Messaging

  • IMediator dispatches commands and queries.
  • ICommandHandler<TCommand, TResult> handles state-changing requests.
  • IQueryHandler<TQuery, TResult> handles read-only requests.
  • IBeforeRequestBehavior<TRequest, TResult> runs before a handler and is defined in the mediator behavior abstractions namespace.
  • IAfterRequestBehavior<TRequest, TResult> runs after a handler returns a result and is defined in the mediator behavior abstractions namespace.
  • IFinallyRequestBehavior<TRequest, TResult> runs after request processing completes or fails and is defined in the mediator behavior abstractions namespace.

Domain Events

  • IEventBus publishes domain events.
  • IEventHandler<TEvent> handles a specific domain event type.
  • IAggregateTracker tracks aggregate roots touched during a request so their domain events can be published and cleared.

Persistence

  • IUnitOfWork defines persistence and transaction operations.
  • IRepository<TId, TAggregateRoot> defines basic aggregate persistence operations.
  • IReadRepository<TId> defines read-only existence checks.

Querying Models

  • PaginationParameters calculates Skip and Take for page-based reads.
  • PaginationResult<TItem> returns page metadata and items.
  • CursorPaginationParameters represents cursor pagination input.
  • CursorPaginationResult<TItem> returns cursor pagination metadata and items.
  • SortParameters and SortOrder represent read sorting options.
  • FilterParameters is the base type for custom read filter records.

Configuration

The package does not require runtime configuration. Consumers provide concrete implementations for mediator dispatch, persistence, event bus delivery, aggregate tracking, and dependency injection registration.

Development

Restore

dotnet restore

Format

dotnet format

Build

dotnet build --configuration Release

Test

dotnet test --configuration Release

Pack

dotnet pack --configuration Release

Project Structure

.
├── src/
│   └── PANiXiDA.Core.Application/
├── tests/
│   └── PANiXiDA.Core.Application.UnitTests/
├── Directory.Build.props
├── Directory.Build.targets
├── Directory.Packages.props
├── global.json
├── version.json
├── icon.png
├── LICENSE
└── README.md

License

This project is licensed under the Apache-2.0 license. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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
1.0.2 86 5/10/2026