asp.net-mvc – MVC:传入字典的模型项是X类型,但是这个字典需要X类型的模型项

我首先使用EF模型并在MVC中使用viewmodels,我遇到此错误的问题:

The model item passed into the dictionary is of type 'System.Collections.Generic.List`1[NKI3.Models.Question]',but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[NKI3.viewmodels.IndexCreateviewmodel]'.

这是我的viewmodel:

public class IndexCreateviewmodel
{
    public string QuestionText { get; set; }
    public string Sname { get; set; }
    public string Cname {get;set;}
}

这是我在我的控制器中的动作:

public ActionResult Index()
{
    var Q = db.Question.Include(a => a.SubjectType).Include(a => a.CoreValue);
    return View(Q.ToList());   
}

这是我的强类型视图:

@model IEnumerable<NKI3.viewmodels.IndexCreateviewmodel>

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New","Create")
</p>
<table>
    <tr>
        <th>
            QuestionText
        </th>
        <th>
            Sname
        </th>
        <th>
            Cname
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.displayFor(modelItem => item.QuestionText)
        </td>
        <td>
            @Html.displayFor(modelItem => item.Sname)
        </td>
        <td>
            @Html.displayFor(modelItem => item.Cname)
        </td>

    </tr>
}

</table>

我似乎没有找到解决方案,我是否必须在控制器动作索引中返回我的viewmodel?任何帮助表示赞赏.

提前致谢!

最好的祝福!

解决方法

请参阅:下面的注释
返回Enumerable会有帮助吗?

return View(Q.AsEnumerable());

编辑:是的,我知道我的第一枪是错的!…没有注意到你的观点想要一个

@model IEnumerable<NKI3.viewmodels.IndexCreateviewmodel>

我同意其他人关于转换为匹配类型所需的返回值…
或者在视图中调整期望类型……
也许你可以利用像automapper(http://automapper.org/)这样的映射框架来帮助你解决在域对象和视图模型之间映射代码的问题.

这取决于你 – 无需进一步投票……

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....