Skip to content

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

Notifications You must be signed in to change notification settings

Waheed-Programmer/Asp-Core-MVC-Web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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