Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 664 Bytes

README.md

File metadata and controls

17 lines (9 loc) · 664 Bytes

Asp.CoreMVC

In this repository, all basic features of Asp.net Core are implemented on a beginner's level.

Data base First Approach Migrations With Project

open pakge manage console

Run this command:

Scaffold-DbContext 'Data Source=Your Sql Server name; Initial Catalog=TestDB; Integrated Security=True' Microsoft.EntityFrameworkCore.SqlServer -outputDir Models/Database -DataAnnotations

Update Database or create new table

Run Command:

Scaffold-DbContext 'Data Source=Your Sql Server name; Initial Catalog=TestDB; Integrated Security=True' Microsoft.EntityFrameworkCore.SqlServer -outputDir Models/Database -DataAnnotations -Force