作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Entity Framework 5 从模型创建了一个数据库。该模型有一个名为“Person”的表,另一个名为“Administrator”的表。“管理员”继承自“人员”。
当我为“管理员”创建新 Controller 时使用 MVC4。当我自动创建 Controller 和 View 时,这是错误:
错误 2 - 无法隐式转换“Model.Administrator”中的“Model.Person”类型。存在显式转换(您是否缺少强制转换?)。
错误代码(星号之间):
public ActionResult Details(int id = 0)
{
**Administrator admin = db.Person.Single(u => u.Id == id);**
if (admin == null)
{
return HttpNotFound();
}
return View(admin);
}
最佳答案
Administrator a = db.Person.OfType<Administrator>().Single(u => u.Id == id);
使用 OfType<>()
filter 方法,仅返回可以转换为该类型的对象。或者显式转换对象。
Administrator a = db.Person.Single(u => u.Id == id) as Administrator;
这两种解决方案都有效。
关于c# - MVC4 Entity Framework - 无法隐式转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17538044/
我是一名优秀的程序员,十分优秀!