大家好我试图使用这个http://msdn.microsoft.com/en-us/vs2010trainingcourse_aspnetmvc3fundamentals_topic8.aspx,但我有一些问题
1)我在 Create t.Albums 下的收藏始终是空的,但是我的 t.Genre 正在工作我不知道如何解决我已将其包含在我的 Create.aspx 中的问题
Inherits="System.Web.Mvc.ViewPage<SomeStore.Controllers.ViewModels.StoreBrowseViewModel>"
-------------------------------- StoreBrowseViewModel
_
public class StoreBrowseViewModel
{
public StoreBrowseViewModel{}
public StoreBrowseViewModel(List<Album> _Albums, Genre _Genre)
{
this.Genre=_Genre;
this.Albums = _Albums;
}
public Genre Genre { get; set; }
public List<Album> Albums { get; set; }
}
-------------------------------- StoreBrowseController
_
public ActionResult Create([Bind(Include = "Genre,Albums")]StoreBrowseViewModel t)
{
}