What problem does it solve?
This Skill simplifies the process of working with Entity Framework Core within the ABP Framework, covering database context configuration, entity mapping, repository implementation, and migration management.
Core Features & Use Cases
- DbContext Configuration: Set up and configure your
AbpDbContext.
- Entity Configuration: Define entity mappings and conventions using ABP's best practices.
- Repository Implementation: Create and use EF Core repositories for data access.
- Migrations: Manage database schema changes with
dotnet ef commands.
- Data Seeding: Implement data seeding for initial database population.
- Use Case: When developing an ABP application and needing to add a new entity, configure its mapping, implement a repository for it, and create the corresponding database migration.
Quick Start
Use the abp-ef-core skill to add a new migration named 'AddProductEntity' to your EF Core project.