ddd-example
Here are 82 public repositories matching this topic...
A full-stack .NET microservices build on Dapr and Tye
-
Updated
Jun 8, 2021 - C#
Sample .NET Core REST API CQRS implementation with raw SQL and DDD using Clean Architecture.
-
Updated
Feb 22, 2021 - C#
Jivejdon is a Domain Driven Design appication with CQRS/ES/Clean/Hexagonal architecture
-
Updated
Jun 13, 2021 - Java
Create a new base class (ie; ValueObject<PropertyType>) that can be inherited to create a value object concrete definition.
Value objects are a core concept of DDD and represent things that are identified by their value rather than their hash/id/reference etc. See: https://martinfowler.com/bliki/ValueObject.html
There're already some examples on the web on this practice in typescript (eg h
-
Updated
May 29, 2021 - TypeScript
-
Updated
May 22, 2021 - Java
Improve the README
-
Updated
Nov 19, 2020 - Java
Onion Architecture with .NET 5/.NET Core and CQRS/Event Sourcing following a DDD approach
-
Updated
Mar 30, 2021 - C#
Sample implementation and comparison of various approaches to building DDD applications. Useful as a baseline to quickly start a DDD dot net project.
-
Updated
May 22, 2021 - C#
Example for Nest.js, MySQL, Redis, REST api, CQRS, DDD
-
Updated
May 29, 2021 - TypeScript
DDD patterns implemented following TDD
-
Updated
Jan 13, 2020 - C#
Work in progress
-
Updated
Nov 20, 2020 - C#
Domain Driven Design. Examples focuses on key concept of ddd like Entities, Aggregate root, Repository, Value Objects & ACL.
-
Updated
Apr 26, 2018 - Java
-
Updated
Nov 3, 2020 - Java
CQRS+ES and DDD framework for .NET
-
Updated
Jun 7, 2020 - C#
The base-classes for DDDomain objects (Entities, valuetypes, aggregates)
-
Updated
Dec 21, 2020 - C#
API for patient registration and scheduling a consultation using domain driven design
-
Updated
Sep 14, 2018 - C#
Modular, cohesive, transparent and fast web server template
-
Updated
Apr 23, 2021 - Python
Tutorial on DDD (Domain-Driven Design), by building a Web App with the theme "Personal Finance Management". Adapted from a group project in university.
-
Updated
Jan 6, 2021 - Java
DDD sample, a minimized condition order system.
-
Updated
Jul 29, 2018 - Java
DDD example for Play Framework (Domain Driven Design)
-
Updated
Apr 23, 2021 - JavaScript
This repo contains a sample project explains the fundamental layers in Domain Driven Design (DDD)
-
Updated
Mar 1, 2021 - C#
Hexagonal Architecture Application with CakePHP and a DIC - Could be used as a template in theory but for now its a learning project
-
Updated
May 20, 2018 - PHP
Um projeto de exemplo, que mostra como implementar camadas de serviço num projeto Laravel, SEM implementar Repository Pattern.
-
Updated
Jun 9, 2021 - PHP
An example of the Domain Driven Design implemented in Typescript.
-
Updated
May 25, 2021 - Shell
This example project was created for be inspired but remember it's work in progress
-
Updated
Jul 30, 2020 - C#
Improve this page
Add a description, image, and links to the ddd-example topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ddd-example topic, visit your repo's landing page and select "manage topics."


https://github.com/kgrzybek/modular-monolith-with-ddd/blob/54d209639e501301e879aa0d0a84c9ea49e4689e/src/Modules/Meetings/Domain/Meetings/Rules/MeetingAttendeesLimitMustBeGreaterThanGuestsLimitRule.cs#L1-L21
I believe the comparison operator used in the
IsBrokenmethod is wrong because the rule is checking that meeting attendees limit must be greater than guests limit.