VB中的MVC音乐商店教程?

时间:2010-06-29 11:33:33

标签: c# vb.net asp.net-mvc-2 lambda

我正在使用Visual Basic中的MVC音乐商店(mvcmusicstore.codeplex.com),尝试转换内容。但是,我在视图中使用了一些lambda表达式。具体来说,在使用相册编辑器模板的第53页上,当我使用以下代码时,我没有看到我的编辑器模板:

原件: <%: Html.EditorFor(model => model.Album,
new { Artists = Model.Artists, Genres = Model.Genres}) %>

我的VB: <%: Html.EditorFor(Function(model) model.Album,
New With { .Artists = Model.Artists, .Genres = Model.Genres}) %>

但页面根本没有显示模板。我无法在VB Lambdas上找到太多有用的资源来判断我这样做是否合适!

1 个答案:

答案 0 :(得分:1)