.Net Entity class / DB migration command / 닷넷 / 데이터베이스 마이그레이션 명령어/DotNet/Csharp/씨샵/씨샾/EntityFrameworkCore/엔티티프레임워크코어
- DB migration 하는 방법 (DB 최초 생성 또는 수정 후 다시 생성)
1. Visual Studio 에서 View - Other Windows - Package Manager Console(PMC) 창 열어둔다.
2. PMC 창에 아래 명령어 순서대로 친다.
2.1. 기존의 DB가 있다면 해당 DB (Context) 클래스에 해당되는 DB를 지워준다.
Drop-Database -Context {DbContext클래스이름}
2.2. 만들어둔 DB (Context) 클래스에 해당되는 Migration 코드 클래스를 생성한다.
Add-Migration -Context {DbContext클래스이름) -OutputDir {Migration코드생성위치} {Migration이름}
2.3. 만들어둔 Migration 코드로 local DB를 생성한다
Update-Database -Context {DbContext클래스이름}
Something else you might like...?
How to check ongoing live process on Linux cmd, 리눅스 커맨드창에서 어떤 프로세스가 실행중인지 확인하기
How to check ongoing live process on Linux cmd, 리눅스 커맨드창에서 어떤 프로세스가 실행중인지 확인하기, java, ubuntu, cpp 리눅스 cmd 창에서 검색할 프로세스명을 grep 명령어를 써서 골라낸다. Check pr..
itdar.tistory.com
Omega-3 오메가3 usage/side effects/dosage/fatigue/supplement,효능/부작용/성인,소아 용법/건강/피로회복/영양
Omega-3 오메가3 usage/side effects/dosage/fatigue/supplement,효능/부작용/성인,소아 용법/건강/피로회복/영양제 원글 ( 여기 ) Origin ( Here ) In the past 10 years, many Americans have turned to omega..
itdar.tistory.com
2018/12/16 - [Life/Health care] - L-Arginine 아르기닌 usage/side effects/dosage 효능/부작용/성인,소아 용법(2)
'Programming > Database' 카테고리의 다른 글
Head First SQL (헤드퍼스트 SQL) 요약정리 (0) | 2022.02.17 |
---|---|
Difference between Char and Varchar in Database datatype, 데이터베이스 자료형 Varchar 와 Char 의 차이점 (0) | 2018.11.04 |