是否可以在上下文中不具有导航属性?

时间:2015-08-26 09:00:28

标签: c# entity-framework entity-framework-6 navigation-properties

例如,如果我有Entity模型

public class Creature
{
    [Key]
    public int CreatureID { get; set; }
    public int Weakness { get; set; }
    public string Description { get; set; }
}

然后我在Context

中注册
public class RPGContext : DbContext
{
    public DbSet<Creature> Creature { get; set; }
    ...

让我们说我在class

中创建了一个新的Context
public class Troll
{
    public int TrollID { get; set; }
    public int CreatureID { get; set; }

    public virtual Creature Creature { get; set; }
}

是否可以在Creature课程中将导航属性设置为Troll?意味着如果我将CreatureID设置为某个值,导航属性将自动填充。

抱歉愚蠢的问题,我是EF的新手。任何帮助将不胜感激。

0 个答案:

没有答案