I saw somewhere code like this:
return View(x=>x.List());
Instead of
return View("List");
What do I need to achieve this ?
I’m using Asp.net MVC 2 RC 2
EDIT I do not mean strong typed views
Next example
return this.RedirectToAction(c => c.Speaker());
Strongly Typed RedirectToAction is provided by the MvcContrib project.