实体框架5,无效的列名称错误

时间:2013-10-24 05:55:42

标签: c# entity-framework-5

我正在使用实体框架5.我有一个父子递归结构的场景。为此,我编写了如下代码:

 public class Step
    {
        public Step()
        {
            this.Childs = new HashSet<Step>();
        }
    public int Id { get; set; }        
        public string Name { get; set; }
        public string Description { get; set; }

        public virtual ICollection<Step> Childs { get; set; }
        public virtual Step Parent { get; set; }
    }

我收到无效的列名“Parent_Id”错误。 在此先感谢...!

0 个答案:

没有答案