dotnet-cqrs-query-generator
Installation
SKILL.md
CQRS Query Generator
Overview
This skill generates Queries following the CQRS pattern. Queries are read-only operations that return data without modifying state. Key principles:
- Queries never modify state - Read-only operations
- Use Dapper for reads - Bypass EF Core for performance
- Return DTOs, not entities - Projection to response models
- Direct SQL queries - Optimized for the specific use case