I am a little confused about the various different "mainstream" scaffolding options for MVC3. There is a NuGet package called MVCScaffolding. It first showed up in Jan 2011, but seems to be active and have recent updates, and be developed by Scott Hanselman, among others. Then in May 2011 came the MVC3 Tools Update. This seems like it incorporated the original scaffolding ideas into an "out of the box" scaffolding options. However, this has not been updated since.
So - what is the relationship between these two scaffoldings (if any). Are there cases when one should be used over the other, or is it just a matter of taste? Does Visual Studio 2012 or MVC4 change the game on any of this?
Thanks for any input.
From my investigations so far:
MVCScaffolding:
MVC3 Tools Scaffolding
*There is a way to get the MVCScaffolding working with Database First, but you have to work it a little.
My Conclusions (subjective)
Overall, the Code First & MVC3 Scaffolding seems a more "best practice" approach. The Repository creates more clean opportunities for unit tests, and the POCOs mean there is not data access code bleeding across application tiers.
As for MVC4, I am not sure.
I hope this helps!