/learning-efcore

This repository contains all my practices and lessons about Entity Framework Core

Primary LanguageC#

Learning Entity Framework Core

Main Topics Learned

  • Setup EF Core's context
  • Required Packages
  • Commands
    • Add-Migration
    • Drop-Database
    • Remove-Migration
    • Scaffold-DbContext
    • Script-DbContext
    • Script-Migration
    • Update-Database
  • Relationships between Entities
    • One-To-One
    • One-To-Many
    • Many-To-Many
  • Performing CRUD Operations
  • Raw SQL, Views, Stored Procedures
  • Default Conventions