What problem does it solve?
This Skill provides the foundational patterns and code examples for implementing Domain-Driven Design (DDD) tactical patterns in C#/.NET, enabling developers to build complex, maintainable, and well-structured domain models.
Core Features & Use Cases
- Domain Modeling: Implement core DDD building blocks like Entities, Value Objects, Aggregates, and Domain Events.
- Code Structure: Provides base classes and examples for common patterns such as Strongly-Typed IDs, the Result pattern, and Repository interfaces.
- Use Case: When designing a new feature for an e-commerce platform that requires complex business logic around order processing, use this Skill to define the
Order aggregate, Money value object, and OrderCreatedEvent.
Quick Start
Implement a new Entity using the provided Entity<TId> base class.