What problem does it solve?
This Skill solves the common confusion in ABP Framework projects about how to structure Domain and Application layers using DDD concepts like Entities, Aggregate Roots, repositories, domain services, and application services.
Core Features & Use Cases
- DDD building blocks: Learn how to model Entities, Aggregate Roots, Value Objects, Domain Services, and repository interfaces/implementations in ABP.
- Application layer patterns: Design DTOs, configure Mapperly mappings, and implement Application Services (including CRUD via base classes).
- Operational ABP concerns: Apply authorization policies, validation, specifications, eager loading, unit of work conventions, and auditing (FullAuditedAggregateRoot).
- Real-world use case: When building an ABP module for ordering or catalog management, use Aggregate Roots to enforce invariants, DTOs to keep presentation isolated, and CRUD app services to reduce boilerplate.
Quick Start
Ask the AI: "Show me how to implement ABP DDD for an Order aggregate (AggregateRoot, Entities, DTOs, Mapperly, and an ICrudAppService) following the ABP v10.4 patterns."