What problem does it solve? Writing consistent entity-to-DTO mapping code in ASP.NET Zero projects requires knowing the exact Mapperly conventions, file locations, and base classes. This Skill provides the established patterns so generated mappers compile correctly and follow team conventions. ## Core Features & Use Cases - Standard Mapper Generation: Creates partial mapper classes inheriting from MapperBase<TSource, TDest> with the [Mapper] attribute and both Map overrides. - Manual Mapping Guidance: Shows how to write non-partial manual mappings for protected setters (like EntityDto Id) and calculated properties. - Property Ignoring: Demonstrates MapperIgnoreTarget for excluding properties such as passwords from DTO mapping. - Use Case: When adding a new Product feature, generate the four typical mappers (ListDto, EditDto both directions, CreateDto) in Application/Mappers/ProductMappers.cs and consume them via ObjectMapper in app services. ## Quick Start Generate Mapperly mapper classes for the Product entity and its ListDto, EditDto, and CreateDto following the project conventions.