指定的包含路径无效。 EntityType' testDB_KYC3Model.ts_upld_doc'没有声明名称为' Fields'的导航属性。

时间:2016-01-18 08:31:23

标签: entity-framework model-view-controller

我收到以下错误。 指定的包含路径无效。 EntityType' testDB_KYC3Model.ts_upld_doc'不会声明名称为' Fields'。

的导航属性

这是我的ts_upld_doc类。

 public partial class ts_upld_doc
    {
        string _template;

        public ts_upld_doc()
        {
            this.tr_upld_content = new HashSet<tr_upld_content>();
        }
        public List<tr_doc_content> Fields { get; set; }

        public int upld_docid { get; set; }
        public int usr_createdby { get; set; }
        public Nullable<int> upld_clientid { get; set; }
    public virtual ICollection<tr_upld_content> tr_upld_content { get; set; }
}

这是我的tr_doc_content类

public partial class tr_doc_content
    {
        public int doc_contentid { get; set; }
        public int doc_typeid { get; set; }
        public string doc_contenttypelabel { get; set; }
        public string doc_ctrltype { get; set; }
        public string doc_fieldtype { get; set; }
        public Nullable<bool> doc_isrequired { get; set; }
        public Nullable<bool> doc_isactive { get; set; }

        public virtual tm_doc_type tm_doc_type { get; set; }
    }

我有更多的课程,其中写有一些函数。

public DbDrivenView(string viewName)
        {
            if (string.IsNullOrEmpty(viewName))
            {
                throw new ArgumentNullException("viewName", new ArgumentException("View Name cannot be null"));
            }
            _viewName = viewName;
        }

        public void Render(ViewContext viewContext, TextWriter writer)
        {

            ts_upld_doc dataForm = dbContext.ts_upld_doc.Include("Fields").First(f => f.upld_employeename == _viewName);
         var sb = new StringBuilder();
            var sw = new StringWriter(sb);
            using (HtmlTextWriter htmlWriter = new HtmlTextWriter(sw))
            {
                htmlWriter.RenderBeginTag(HtmlTextWriterTag.Div);

                foreach (var item in dataForm.Fields)
                {
                    htmlWriter.RenderBeginTag(HtmlTextWriterTag.Div);
                    htmlWriter.WriteEncodedText(item.doc_contenttypelabel);
 htmlWriter.AddAttribute(HtmlTextWriterAttribute.Id, item.doc_ctrltype);
                    htmlWriter.AddAttribute(HtmlTextWriterAttribute.Name, item.doc_ctrltype);
                    htmlWriter.RenderEndTag();
                    htmlWriter.RenderBeginTag(HtmlTextWriterTag.Div);
                }htmlWriter.RenderEndTag();
            }
            writer.Write(dataForm.Template.Replace("@DataFields", sb.ToString()));
        }

当我调试此代码时,我收到以下错误异常详细信息:System.InvalidOperationException:指定的包含路径无效。 EntityType&#39; testDB_KYC3Model.ts_upld_doc&#39;没有声明名称为&#39; Fields&#39;的导航属性。靠近这行代码。

ts_upld_doc dataForm = dbContext.ts_upld_doc.Include("Fields").First(f => f.upld_employeename == _viewName);
       Please help me in sorting out this.     

1 个答案:

答案 0 :(得分:0)

看起来Entity Framework不知道&#34; Fields&#34;是一个外键关系。尝试在模型构建器中明确地公开这种关系,例如

ModelBuilder.Entity<ts_upld_doc>().HasMany(d => d.Fields).WithRequired();

如果启用了延迟加载,请务必将此集合标记为virtual