在Steven Sanderson的MVC 3书中,在p185的底部,下面的表达式用于呈现分页链接。
@Html.PageLinks(Model.Paginginfo, x=> Url.Action("List", new {page = x}))
什么是VB.NET等价物?我被困在x url lambda位上。
答案 0 :(得分:4)
在VB.NET中,lambda应该等同于:
Function(x) Url.Action("List", New With { .Page = x })
有关VB.NET的更多信息,请参阅MSDN: