我有一个需要包含自身相关实体的实体:
public class Period
{
public int ID {get; set;}
public DateTime StartDate {get; set;}
public DateTime EndDate {get; set;}
public Period PriorPeriod {get; set;}
}
如何仅使用 POCO 来实现这一点,或者这是否需要 Fluent API 映射?
我有一个需要包含自身相关实体的实体:
public class Period
{
public int ID {get; set;}
public DateTime StartDate {get; set;}
public DateTime EndDate {get; set;}
public Period PriorPeriod {get; set;}
}
如何仅使用 POCO 来实现这一点,或者这是否需要 Fluent API 映射?