我正在尝试在索引页面上获取项目列表 - 但我一直在收到错误。我尝试了不同的代码,下面是我尝试过的最新代码 - 但它仍然没有用。它给了我这个错误:
System.InvalidOperationException:指定的包含路径无效。 EntityType'StoreWeb.Models.Project'未声明名为'Collections'的导航属性
我认为这是因为我不知道如何从Project表中获取collectionID。对于Project表,它具有collectionID作为外键。 (项目必须有1个集合。集合可能有项目。)
有人可以帮帮我吗?这就是我所拥有的:
模型
Collection.cs [已修改]
[Table("Collection")]
public class Collection
{
[Key]
public string collectionID { get; set; }
public string collectionName { get; set; }
public List<Project> Projects { get; set; }
}
Project.cs [已修改]
[Table("Project")]
public class Project
{
[Key]
public string projectID { get; set; }
public string projectName { get; set; }
public string projectCity { get; set; }
public string collectionID { get; set; } // This is what was needed!
public virtual Collection Collection { get; set; }
}
对于类Project,它具有collectionID作为外键。 (项目必须有1个集合。集合可能有项目。)
ProductEntities.cs
public class ProductEntities : DbContext
{
public DbSet<Collection> Collections { get; set; }
public DbSet<Project> Projects { get; set; }
}
CONTROLLER
ProjectController [已修改]
using System.Data.Entity;
public class ProjectController : Controller
{
ProductEntities productDB = new ProductEntities();
//
// GET: /Project/
public ActionResult Index()
{
var projectModel = productDB.Projects.Include(m => m.Collection);
return View(projectModel);
}
视图
查看/项目/ Index.chtml
@model IEnumerable<StoreWeb.Models.Project>
@{
ViewBag.Title = "Index";
}
<h1>PROJECTS</h1>
@foreach (var project in Model)
{
<br /><a href="@Url.Action("Details", new { id = project.projectID })">@project.projectName</a>
}
答案 0 :(得分:3)
只是一个错字
public ActionResult Index(string project)
{
var projectModel = productDB.Projects.Include("Collection");
return View(projectModel);
}
而非“收藏”
提示(当天)
在你的使用中,添加
using System.Data.Entity;
然后你可以制作
var projectModel = productDB.Projects.Include(m => m.Collection);
你会避免“字符串”拼写错误。
修改强>
对于您的课程,如果您使用的是代码优先(您是)
删除“ForeignKeys”(例如Project中的collection_id),然后执行
//remove the "Bind Exclude"
public class Collection
{
public int Id { get; set; }//make it int, it will be taken as the primary key
public string collectionName { get; set; }
public virtual IList<Project> Projects { get; set; }//make it virtual, lazy loading inside
}
在您的项目类
中//remove any "collection_Id" property
public class Project
{
public int Id { get; set; }//make it it, rename it, it will be taken as PK
public string projectName { get; set; }
public string projectCity { get; set; }
public virtual Collection Collection { get; set; }
}
答案 1 :(得分:0)
注意:对于EF CORE 3+或5 +:
我知道已经解决了这个问题,但是在逆向工程或搭建数据库时,使用EF Core会遇到类似的问题:
当我在索引中涉及多个属性时,就会在DbContext中的索引上出现包含属性。
在我的OnModelCreating方法中从DB进行反向工程或脚手架之后,我得到了这样的结果:
entity.HasIndex(e => e.BusinessName, "NonClusteredIndex-20190824-150740")
.IncludeProperties(new[] { "Contentid", "Stateid", "Cityid", "businessurl", "UserID" });
然后我将其更改为此
entity.HasIndex(e => e.BusinessName, "NonClusteredIndex-20190824-150740")
.IncludeProperties(bmaster => new { bmaster.Contentid, bmaster.Stateid, bmaster.Cityid, bmaster.Businessurl, bmaster.UserId });
这为我解决了。在这种情况下,EF Core无法使用字符串参数,我希望此问题将在新版本的EF Core中得到解决。