All Projects → armanab → CleanArchitecture

armanab / CleanArchitecture

Licence: MIT license
Clean Architecture Solution for .NET 5

Programming Languages

C#
18002 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to CleanArchitecture

Equinoxproject
Full ASP.NET Core 5 application with DDD, CQRS and Event Sourcing concepts
Stars: ✭ 5,120 (+28344.44%)
Mutual labels:  cqrs, ddd, event-sourcing, asp-net-core, mediatr
RCM
RCM is a simple CRM application designed for Auto Parts Store made with ASP.NET Core based on DDD, CQRS and SOLID Principles.
Stars: ✭ 29 (+61.11%)
Mutual labels:  cqrs, ddd, event-sourcing, asp-net-core, mediatr
MediatrTutorial
CQRS implementation in ASP.NET Core using MediatR in .NET 5
Stars: ✭ 88 (+388.89%)
Mutual labels:  cqrs, event-sourcing, asp-net-core, mediatr
Aspnetcore Ddd
Full ASP.NET Core 3.1 LTS application with DDD, CQRS and Event Sourcing
Stars: ✭ 88 (+388.89%)
Mutual labels:  cqrs, ddd, event-sourcing, webapi
Dotnet New Caju
Learn Clean Architecture with .NET Core 3.0 🔥
Stars: ✭ 228 (+1166.67%)
Mutual labels:  cqrs, ddd, event-sourcing, webapi
Event Sourcing Jambo
An Hexagonal Architecture with DDD + Aggregates + Event Sourcing using .NET Core, Kafka e MongoDB (Blog Engine)
Stars: ✭ 159 (+783.33%)
Mutual labels:  cqrs, ddd, event-sourcing, webapi
Event Sourcing Castanha
An Event Sourcing service template with DDD, TDD and SOLID. It has High Cohesion and Loose Coupling, it's a good start for your next Microservice application.
Stars: ✭ 68 (+277.78%)
Mutual labels:  cqrs, ddd, event-sourcing, webapi
Wolkenkit Boards
wolkenkit-boards is a team collaboration application.
Stars: ✭ 236 (+1211.11%)
Mutual labels:  cqrs, ddd, event-sourcing
Bifrost
This is the stable release of Dolittle till its out of alpha->beta stages
Stars: ✭ 111 (+516.67%)
Mutual labels:  cqrs, ddd, event-sourcing
Event Sourcing
Provides basic functionality for event sourced aggregates.
Stars: ✭ 242 (+1244.44%)
Mutual labels:  cqrs, ddd, event-sourcing
Digital Restaurant
DDD. Event sourcing. CQRS. REST. Modular. Microservices. Kotlin. Spring. Axon platform. Apache Kafka. RabbitMQ
Stars: ✭ 222 (+1133.33%)
Mutual labels:  cqrs, ddd, event-sourcing
Eventflow.example
DDD+CQRS+Event-sourcing examples using EventFlow following CQRS-ES architecture. It is configured with RabbitMQ, MongoDB(Snapshot store), PostgreSQL(Read store), EventStore(GES). It's targeted to .Net Core 2.2 and include docker compose file.
Stars: ✭ 131 (+627.78%)
Mutual labels:  cqrs, ddd, event-sourcing
Proophessor Do
prooph components in action
Stars: ✭ 247 (+1272.22%)
Mutual labels:  cqrs, ddd, event-sourcing
Pdo Event Store
PDO implementation of ProophEventStore http://getprooph.org
Stars: ✭ 96 (+433.33%)
Mutual labels:  cqrs, ddd, event-sourcing
Event Store Symfony Bundle
Event Store Symfony Bundle
Stars: ✭ 93 (+416.67%)
Mutual labels:  cqrs, ddd, event-sourcing
Productcontext Eventsourcing
A practical/experimental Event Sourcing application on Product Bounded Context in an e-commerce
Stars: ✭ 88 (+388.89%)
Mutual labels:  cqrs, ddd, event-sourcing
Cronus
Cronus is a lightweight framework for building event driven systems with DDD/CQRS in mind
Stars: ✭ 139 (+672.22%)
Mutual labels:  cqrs, ddd, event-sourcing
Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
Stars: ✭ 162 (+800%)
Mutual labels:  cqrs, ddd, event-sourcing
Goldeneye
The CQRS flavoured framework that will speed up your WebAPI and Microservices development
Stars: ✭ 171 (+850%)
Mutual labels:  cqrs, event-sourcing, webapi
Messagebus
A MessageBus (CommandBus, EventBus and QueryBus) implementation in PHP7
Stars: ✭ 178 (+888.89%)
Mutual labels:  cqrs, ddd, event-sourcing

CleanArchitecture

Clean Architecture Solution Template for .NET 5 Web Api


This is a solution template for creating Web Api ASP.NET Core following the principles of Clean Architecture.

Technologies

Getting Started

  1. Install the latest .NET 5 SDK

  2. Clone the source code.

  3. Navigate to src/Apps/WebApi and run (ASP.NET Core Web API)

Database Configuration

The template is configured to use an in-memory database by default. This ensures that all users will be able to run the solution without needing to set up additional infrastructure (e.g. SQL Server).

If you would like to use SQL Server, you will need to update WebApi/appsettings.json as follows:

  "UseInMemoryDatabase": false,

Verify that the DefaultConnection connection string within appsettings.json points to a valid SQL Server instance.

When you run the application the database will be automatically created (if necessary) and the latest migrations will be applied.

Database Migrations

To use dotnet-ef for your migrations please add the following flags to your command (values assume you are executing from repository root)

  • --project src/Infrastructure (optional if in this folder)
  • --startup-project src/WebUI
  • --output-dir Persistence/Migrations

For example, to add a new migration from the root folder:

dotnet ef migrations add "SampleMigration" --project src\Infrastructure --startup-project src\WebUI --output-dir Persistence\Migrations

Overview

Domain

This will contain all entities, enums, exceptions, interfaces, types and logic specific to the domain layer.

Application

This layer contains all application logic. It is dependent on the domain layer, but has no dependencies on any other layer or project. This layer defines interfaces that are implemented by outside layers. For example, if the application need to access a notification service, a new interface would be added to application and an implementation would be created within infrastructure.

Infrastructure

This layer contains classes for accessing external resources such as file systems, web services, smtp, and so on. These classes should be based on interfaces defined within the application layer.

WebApi

This layer is a web api application based on ASP.NET 5.0.x. This layer depends on both the Application and Infrastructure layers, however, the dependency on Infrastructure is only to support dependency injection. Therefore only Startup.cs should reference Infrastructure.

Features

  • Event sourcing
  • CQRS with MediatR Library
  • Entity Framework Core - Code First
  • MediatR Pipeline Logging & Validation
  • Swagger UI
  • Response Wrappers
  • Healthchecks
  • Pagination
  • In-Memory Caching
  • Redis Caching
  • In-Memory Database
  • Microsoft Identity with JWT Authentication
  • Role based Authorization
  • Identity Seeding
  • Database Seeding
  • Custom Exception Handling Middlewares
  • Fluent Validation
  • Automapper
  • SMTP / Mailkit / Sendgrid Email Service
  • Complete User Management Module (Register / Generate Token / Refresh token /Forgot Password / Confirmation Mail)
  • User Auditing

Prerequisites

Open CLI in the project folder and run the below comment.

PS CleanArchitecture> docker-compose up

docker-compose.yml pull and run the ElasticSearch and Kibana images.

If you are running first time Windows 10 WSL 2 (Windows Subsystem for Linux) Linux Container for Docker, You will probably get the following error from the docker.

Error: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

Solution: Open the Linux WSL 2 terminal sudo sysctl -w vm.max_map_count=262144 and change the virtual memory for Linux.

What is ABluePredicateBuilder

it is library that like ODATA and you can filter or sort on any entity with paging .

With this library, you can write httpGet api to put any filter you want on it and output it in the collection of pagination.

The filters and the face of each are in the form of strings . for example filterString : "CourseId=d1773f09-f17c-4ed0-4e56-08d94509941d¤1µFirstName=Arman¤5µ" This string means that the CourseId is equal to d1773f09-f17c-4ed0-4e56-08d94509941d and the firstName Like Arman.

1-The first thing must be the name of the entity property(case sensitive) and next " = " .

2-" ¤ " for seprate VALUE From OprationEnum (after ¤ oprationEnum is placed)

3-" µ " for seprate each filter section .

OperationEnum in the library has the following values:

Equal = 1, NotEqual = 2, Contain = 3, NotContain = 4, Like = 5, NotLike = 6, StartsWith = 7, NotStartsWith = 8, EndsWith = 9, NotEndsWith = 10,

GreaterThan = 11, GreaterThanOrEqual = 12, LessThan = 13, LessThanOrEqual = 14, IsNull = 15, IsNotNull = 16, None = 17, HasFlag = 18, HasnotFlag = 19,

Give a Star

My primary focus in this project is on quality. Creating a good quality product involves a lot of analysis, research and work. It takes a lot of time. If you like this project, learned something or you are using it in your applications, please give it a star . This is the best motivation for me to continue this work. Thanks!

Share It

There are very few really good examples of this type of application. If you think this repository makes a difference and is worth it, please share it with your friends and on social networks. I will be extremely grateful.

Support

If you are having problems, please let us know by raising a new issue.

License

This project is licensed with the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].