The situation Imagine a scenario where you have a JSON service that returns data and you'd like to have it strongly typed on javascript powered client side. Let's say there is an ASP.NET MVC application that goes by the name MvcApplication33 (yes, the 33rd in a row of test applications) . There...
Yesterday I held a presentation (as the part of Bleeding Edge 2009 conference) on how to make ASP.NET MVC applications strong typed by using CodeSmith and CodeRush (actually by using its free DXCore part). Attendees were great and the presentation went well. Attached are the slides in Slovene and source...
Did you ever wonder why do you have to write code like: public ActionResult SomeAction() { ... return View( "SomeView" , model); } instead of this beauty: public ActionResult SomeAction() { ... return Views.Home.SomeAction(model); } Note the advantages: Path to view is strong typed. No more...