Share with friends!
"When should I use a ViewBag vs. ViewData vs. TempData objects?" -- a frequent question in online forums, during presentations, and at events. There are enough similarities and differences between … more
Software scaffolding is a technique usually involving code or template generation of CRUD operations, based on a data model. MvcScaffolding is a tool you can use to scaffold your MVC 3 applications so … more
If you're building ASP.NET MVC 3 applications, you'll want to know about the MvcScaffolding project on CodePlex. Software scaffolding is a way to template software applications so that you can easily … more
Just about every application uses some sort of data model, and .NET developers have been using POCOs (Plain Old CLR Objects) for some time now. You can use either new or existing POCOs in MVC 3 … more