我正在尝试使用Serie
方法中的Fluent Api映射Status
和OnModelCreating
之间的关系:
serieBuilder.HasOne(x => x.Status)
.WithOne()
.HasForeignKey<Status>(s => s.SerieId);
我的模特是:
public class Serie
{
public Guid Id { get; protected set; }
public Guid UserId { get; protected set; }
public Status Status {get; protected set; }
}
public class Status
{
public Guid Id { get; protected set; }
public Guid SerieId { get; protected set; }
public int Active { get; protected set; }
}
结果我可以看到包含所有字段的对象,但Status对象(设置为null)。
我尝试了几种不同的映射方式,但我无法正确地映射它。