.NET EF Core (Entity Framework Core) Migrations


.NET EF Core (Entity Framework Core) Migrations

https://learn.microsoft.com/en-us/ef/core/managing-schemas/migrations/?tabs=dotnet-core-cli Migrations Overview - EF Core Overview of using migrations to manage database schemas with Entity Framework Core learn.microsoft.com DB 스키마를 EF Core 모델과 동기화된 상태로 유지시켜주는 기능 장점 Database version control 제공 공급자를 통한 특정 SQL에 최적화 자동 스키마 스크립트 생성. 패치 과정에서 자동화하기 용이함 단점 마이그레이션 결과가 의도한 것과 달라 데이터가 유실될 수 있음 es) rename을 의도하고 EF Core 모델을 수정했으나 자동화된 마이그레이션 스크립트가 Delete 후 Create 한다면 문제 발생 두 개발자가 동일 DB의 모델을 동시에 변경하는 경우 마이그레...


#dotnet #efcore #migration #migrations #orm

원문링크 : .NET EF Core (Entity Framework Core) Migrations