为什么我无法像这样显示我的viewmodel中的值?
@Html.DisplayFor(modelItem => item.Mailings.ScheduledTime)
我收到以下错误:
无法从用法
推断出方法的类型参数我的观点正在使用
@model List<App.Models.ScheduledMailingsViewmodel>
Viewmodels
public class MailingViewModel
{
public string ScheduledTime { get; set; }
public string Title { get; set; }
}
public class ScheduledMailingsViewmodel
{
public List<MailingViewModel> Mailings { get; set; }
}
控制器
public ActionResult Index()
{
ScheduledMailingsViewmodel vm = new ScheduledMailingsViewmodel();
vm.Mailings = new List<MailingViewModel>();
using (db)
{
db.Database.Connection.Open();
var command = db.Database.Connection.CreateCommand();
command.CommandText = "dbo.GetMailingSchedules";
command.Parameters.Add(new SqlParameter("@param", "somevalue"));
command.CommandType = System.Data.CommandType.StoredProcedure;
var rdr = (command.ExecuteReader());
while (rdr.Read())
{
vm.Mailings.Add(new MailingViewModel { ScheduledTime = rdr[0].ToString(), Title = rdr[1].ToString() });
}
}
return View(vm);
}
答案 0 :(得分:2)
您正在使用viewmodel @model List<App.Models.ScheduledMailingsViewmodel>
列表从控制器发送viewmodel,但在视图中。只需使用@model App.Models.ScheduledMailingsViewmodel
即可。
答案 1 :(得分:1)
这 -
@Html.DisplayFor(modelItem => item.Mailings.ScheduledTime)
应更改为 -
@foreach (var item in Model.Mailings.ToList()){
@Html.DisplayFor(modelItem => item.ScheduledTime)
}