Skip to content

sang-hyeon/Plastic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 );
        }
}