Can I run a MVC 1 application using the MVC 2 assemblies without a hitch? I understand that some 3rd party tools have had stuff broken in MVC 2, but let's assume I'm not using those any other tools.
|
There have been breaking changes. If you want a 1.0 project to run on 2.0, it does look for things in different places; so you'd have to migrate the application to 2.0.. Here are the changes that could possibly 'break' (current as of Preview 2): Changes in Preview 2 Helpers now return an
|
Another breaking change is that the ValueProvider was changed from a Dictionary to the IValueProvider interface. It doesn't break anything unless you use Custom ModelBinders. It also gives you the ability to create your own ValueProviders if you are getting data from places other than the traditional form/querystring/etc... – Keith Rousseau Feb 4 '10 at 19:48 |
|
You are correct that you will need to migrate the project. There are pretty detailed instructions in the Readme that comes with mvc2. – Keith Rousseau Feb 4 '10 at 19:49 |
|
I had originally answered that you could run 1.0 on 2.0 assemblies, and that 'I thought'; but since I've actually migrated an existing ASP.NET MVC 1.0 project to 2.0, there's no need for the 'I Think' (which was in reference to the idea that you wouldn't have to change anything to run a 1.0 on 2.0 -- even though you would.) – George Stocker♦ Feb 4 '10 at 19:56 |
|
Just found the breaking change of setters in modelbinding context. I don't understand why microsoft throws runtime exceptions to notify developers of breaking changes when the compiler could be used. – Paco May 1 '10 at 12:37 |
|
Check out this document. You'll learn about the breaking changes : http://go.microsoft.com/fwlink/?LinkID=157072 |
|||
|
|
|
One gotcha that has bitten me is that all the fields of a model are now always validated on a post. The changes is described by Brad Wilson here. Steve Anderson's blog post describes the issue and my favorite solution (using a custom validator). |
||||
|
|