• Stars
    star
    51
  • Rank 549,455 (Top 12 %)
  • Language
    C#
  • License
    MIT License
  • Created almost 3 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This project provides encapsulation of things like Domain, Application Rules, Business Rules or Business Logic in Application.

Build Source Code Nuget


Abstract

This project provides encapsulation of things like Domain, Application Rules, Business Rules or Business Logic in Application. For this, Command pattern is used.

All applications such as Web, CLI, GUI application can use this project. This can be part of the Usecase Layer, Domain Service Layer or CQRS.

The source generator introduced in .Net 5 is used to implement this Idea. If metaprogramming such as Source generator is properly used, it's possible to provide flexible source code that has not been provided by traditional programming. Generated source code has the same effect as the source code you wrote yourself because it will be injected at compile time.

The name of this project is Plastic Command.

Blog post
Blog post(ํ•œ๊ตญ์–ด)


Flow of the plastic command

Platstic์˜ ๋ช…๋ น ํ๋ฆ„


Plastic Command

Quick Start

Step 1. Specify The Command

// [CommandName("AddCommand")]
class AddCommandSpec : ICommandSpecification<int, int>
{
        public AddCommandSpec(IMyCalculator calculator)
        { 
            ...
        }

        public Task<int> ExecuteAsync(int param, CancellationToken token = default)
        {
            ...
        }
}

Step 2. Add Plastic to IServiceCollection

void Configure(IServiceCollection services)
{
        var pipelineBuilder = new BuildPipeline(...);

        services.UsePlastic(pipelineBuilder);
}

Step 3. Use a Generated Command

class AddController : ControllerBase
{
        public AddController(AddCommand addCommand)
        {
                ...
                ...
                int result = addCommand.ExecuteAsync( 1 );
        }
}