Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 885 Bytes

File metadata and controls

19 lines (12 loc) · 885 Bytes

EF Core Examples

This repository contains various projects and examples demonstrating the use of Entity Framework Core (EF Core) for .NET developers. The examples include different database interaction approaches like Code-First, Database-First, and Scaffolding.


📂 Projects Overview

1. Concurrency.Web

  • Demonstrates handling concurrency in EF Core, showcasing scenarios to manage simultaneous data updates.

2. UdemyEFCore.CodeFirst

  • Covers the Code-First Approach where database tables are generated from model classes.

3. UdemyEFCore.DatabaseFirst

  • Explains the Database-First Approach, where EF Core generates models from an existing database.

4. UdemyEFCore.DatabaseFirstByScaffold

  • Illustrates the Scaffold-DbContext Command to reverse engineer an existing database schema into EF Core models.