猿问

如果在类中更改父实体的导航属性,是否需要手动更改外键?

我有一个Entity;


public class ChildEntity

{

    /// <summary>

    /// Foreign key for this entity.

    /// </summary>

    public virtual int ParentId { get; set; }


    /// <summary>

    /// Navigation Property for this entity.

    /// </summary>

    public virtual TParentEntity Parent { get; set; }

}

如果我改变的Parent属性不同ParentEntity的数据库,(更新两者Parents Collections的Children Entities),我则需要改变ParentId从一个父实体向其他手动?


谢谢!


杨__羊羊
浏览 139回答 1
1回答
随时随地看视频慕课网APP
我要回答