Entity Framework Core에서 클래스를 멤버로 처리하는 방법

소개



평소부터 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.

할 수 없다


  • EF가 GeoCoordinate를 외래 키로 인식
  • 테이블을 만들려고 한다
  • [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; }
    }
    

    그냥 그냥.



    할 수 있었습니다.

    끝.
  • 좋은 웹페이지 즐겨찾기