Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Learning ASP.NET MVC start with 1 or 2 or 3

I'm new to ASP.NET MVC world. I have enough experience for ASP.NET 2.0 and 3.5.

But as I'm seeing that we are now at Version 4, it is making me feel uncomfortable to directly start with this latest version. I'm browsing through ASP.NET MVC video tutorials at microsoft website which is listing learning series starting with ASP.NET MVC -1, MVC -2, MVC -3 and even MVC - 4.

So now the confusion comes here..!! If I start with MVC -3 directly.. did I missed something by ignoring MVC - 1 and MVC - 2 ?

Can I directly start with MVC - 3? without worrying about anything else.

like image 691
Todd Wilson Avatar asked Dec 05 '12 11:12

Todd Wilson


2 Answers

You should definitely not go back to 1 or 2, things have changed quite significantly since then. You don't want to spend too much time in learning things that's not applicable any more. I will recommend you to start with the Book "Pro ASP.NET MVC 3 Framework", that's how I learnt my MVC.

The book starts with a simple example on how MVC works and goes in detail for each individual features of MVC used. If you master the book, you master the MVC!

like image 83
Jack Avatar answered Sep 21 '22 07:09

Jack


Don't worry at all about the versions of asp.net mvc at the time of learning. Major concepts in mvc framework are Model, View, Controller, Routes and once you have basic understand of them you will be able to work with any of the version.

All basic features stated above works same in all versions but different versions added some more capabilities. One of the example for mvc3 compared to mvc4 is the mobile views.

So, don't hesitate and get started!

like image 35
Prashant Lakhlani Avatar answered Sep 22 '22 07:09

Prashant Lakhlani