Entity Framework Core에서 클래스를 멤버로 처리하는 방법
4267 단어 EntityFramework_CoreC#.NET
소개
평소부터 EF Core를 많이 사용하고 있습니다.
조금 빠진 적이 있었으므로 비망 정도로 써 둡니다.
코드 우선 마이그레이션이 통과되지 않음
다음과 같은 클래스에서 코드 우선 마이그레이션을 시도했습니다.
public class Person
{
public int Id { get; set; }
public GeoCoordinate Position { get; set; }
}
public class GeoCoordinate
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}
이상적으로 이런 테이블을 만들고 싶습니다.
열 이름
금형
Id
int
Position_Latitude
double
Position_Longitude
double
가
> Add-Migration init
The entity type 'GeoCoordinate' requires a primary key to be defined.
할 수 없다
왜
다음과 같은 클래스에서 코드 우선 마이그레이션을 시도했습니다.
public class Person
{
public int Id { get; set; }
public GeoCoordinate Position { get; set; }
}
public class GeoCoordinate
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}
이상적으로 이런 테이블을 만들고 싶습니다.
열 이름
금형
Id
int
Position_Latitude
double
Position_Longitude
double
가
> Add-Migration init
The entity type 'GeoCoordinate' requires a primary key to be defined.
할 수 없다
왜
[Key]
속성이 없기 때문에 기본 키를 찾을 수 없으면 오류가 발생합니다.해결책
public class GeoCoordinate
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}
이것을
[Owned]
public class GeoCoordinate
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}
그냥 그냥.
할 수 있었습니다.
끝.
public class GeoCoordinate
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}
[Owned]
public class GeoCoordinate
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}
Reference
이 문제에 관하여(Entity Framework Core에서 클래스를 멤버로 처리하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ctw/items/c9d9ddf1d4e08d853911텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)