In this approach, we create database first then model our entities either manually or using scaffolding. This approach is useful when we work with an existing databases.
Language : C#
.Net Version : >=6.0
- Visual Studio IDE
- Microsoft SQL Server
- Azure Data Studio / SQL Server Management Studio (SSMS) / SSDT for Visual Studio
- Database with tables:
- Departments (Departments data like Name, IsActive)
- Employees (Employee data like Name, Email, Phone, DepartmentId, IsActive)
- Skills (Skills data like Name, IsActive)
- EmployeeSkills (Relation Mapping between Employee and Skill)
- Each Employee belongs to a department and can have multiple skills.
MVC Sample - DotNet MVC Entity Framework Core
Razor Pages Sample - DotNet Razor Pages Entity Framework Core
EntityFrameworkCore
.Net Core MVC
.Net Core Razor Pages
EFCore - Get Started
EFCore - Model from DB
EF Core - Razor Pages