바뀜

이동: 둘러보기, 검색

Asp.net core mvc

788 바이트 제거됨, 2022년 11월 14일 (월) 02:17
편집 요약 없음
====connection string====
"User ID=damienbod;Password=1234;Host=localhost;Port=5432;Database=damienbod;Pooling=true;"
 
===마이그레이션 명령===
====추가====
<syntaxhighlight lang="powershell">
PM> Add-Migration InitialCreate
</syntaxhighlight>
 
==== 삭제 ====
마이그레이션을 추가하고 update-database로 적용하기 전에 마이그레이션을 삭제한다.<syntaxhighlight lang="powershell">
Remove-Migration
</syntaxhighlight>
 
====복원====
PM> Update-Database 20161012160749_AddedOrderToCourse
 
====업데이트====
<syntaxhighlight lang="powershell">
Update-Database
</syntaxhighlight>
 
==== 마이그레이션 테이블 생성 ====
mysql의 경우에 필요한 경우가 있다.<syntaxhighlight lang="mysql">
CREATE TABLE `__EFMigrationsHistory` ( `MigrationId` nvarchar(150) NOT NULL, `ProductVersion` nvarchar(32) NOT NULL, PRIMARY KEY (`MigrationId`) );
</syntaxhighlight>
===모델===
편집
2,431

둘러보기 메뉴