0

我正在使用实体框架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”错误。提前致谢...!

4

0 回答 0