What is the best way to migrate a MVC 2 project to MVC 3 using the Razor view engine?

后端 未结 5 952
一生所求
一生所求 2021-02-13 14:37

What is the best way to migrate a MVC 2 project to MVC 3 using the Razor view engine?

相关标签:
5条回答
  • 2021-02-13 15:00

    There is no substitute for learning the Razor Syntax

    Programming Razor

    I think that some developers over-think razor and make it harder than it is. If you know HTML, JavaScript and C#, just learn some of the basic syntax like a code block

    @model MyApp.Models.MyEntity
    
    @{
        // this is a code block
        ViewBag.MyData = "i need to use a semicolon here";
    }
    
    <div class="myclass">
    //This is inline razor/C# code that uses a 
    //lambda expression to access a model property:
    @Html.TextBoxFor(m => m.MyProperty)
    </div>
    

    The razor engine knows where the C# ends and the HTML begins, you just need to learn a few basic rules.

    Edit: The point I am trying to make is that tools are not the only way to convert from MVC 2 to MVC 3 or 4 Razor. Conversion tools are not perfect. Knowledge of the Razor syntax can also be very helpful.

    0 讨论(0)
  • 2021-02-13 15:06

    There are also links to upgrade tools on David Hayden's blog: http://davidhayden.com/blog/dave/archive/2011/01/05/ASPNETMVC3TutorialsIndex.aspx

    0 讨论(0)
  • 2021-02-13 15:09

    Do you need/want to move to Razor or just having MVC 3? You can still use your aspx pages with the WebFormViewEngine and MVC 3. This what I did on my side because we had quite a big app and more than just a few issues when migrating to MVC 3. So for a while we kept apsx pages and moved pages progressively to cshtml.

    0 讨论(0)
  • 2021-02-13 15:11

    Details can be found in this post from ScottGu's blog (see the How to Upgrade Existing Projects section). I used the MVC 3 project upgrade tool and had only a few minor issues specific to my application after running it.

    0 讨论(0)
  • 2021-02-13 15:11

    Telerik wrote a program to convert usual aspx views to razor

    Have a look here : https://github.com/telerik/razor-converter

    0 讨论(0)
提交回复
热议问题