What problem does it solve? Developers working on ASP.NET Zero applications often struggle with the correct conventions for registering entities, configuring Fluent API mappings, and running migrations in the right project directory, leading to inconsistent data access code and failed schema updates. ## Core Features & Use Cases - Entity Registration Workflow: Step-by-step guidance for adding DbSet properties to the DbContext and configuring entities with Fluent API in OnModelCreating. - Custom Repository Pattern: Templates for creating custom repositories that inherit from the ASP.NET Zero repository base when IRepository<T> is insufficient for complex queries. - Migration Management: Correct commands for creating and applying EF Core migrations from the EntityFrameworkCore project directory, plus production deployment via the Migrator console project. - Use Case: After creating a new Product entity in the Core project, use this Skill to register it in the DbContext, configure table mappings and indexes, and generate the migration without guessing project structure. ## Quick Start Ask the AI to register a new entity in the ASP.NET Zero DbContext and create the corresponding EF Core migration.