将对象映射为零

时间:2018-04-23 14:33:06

标签: c# entity-framework-core

我正在尝试使用Serie方法中的Fluent Api映射StatusOnModelCreating之间的关系:

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)。

我尝试了几种不同的映射方式,但我无法正确地映射它。

0 个答案:

没有答案