Can anyone or anything teach me ASP.NET MVC in 15 days?
-
I presume the magic is in the KnockoutJs, we are going to use Kendo for the View
Never underestimate the power of human stupidity RAH
I don't know much about Kendo (but may well be investigating soon so keen to hear any thoughts) Knowckout really just allows you to create a viewModel in JS and bind it to, well, whatever you want in your HTML. So, simplistically, your HTML tags have bindings specified, you grab some JSON using AJAX, create a Knockout object from it and then yes, the magic happens - two-way binding to your viewmodel. ANd you can use it with Kendo[^] If you haven't looked at it before, I would recommend looking at knockout, as it makes client-side logic much easier (IMHO) than some of the messiness you can get into trying to do it yourself in JS ONe day, when I have a few days, I will write an article on all this stuff to show how poerful and easy it is - meanwhile SuperLloyd has written an article [^]covering some of this stuff, which I only discovered 10 minutes ago myself!
MVVM # - I did it My Way ___________________________________________ Man, you're a god. - walterhevedeich 26/05/2011 .\\axxx (That's an 'M')
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
I've spent a lot of time on MVC3/4. A few people have suggested the pluralsight tutorials, which are a good intro, particularly Scott Allen's series. However I have to sound a rather negative warning in that I do not believe that it is possible to get proficient in MVC in 15 days and that this is asking for problems. The reason I say this is MVC is only the architecture. The real expertise is required when you start doing slightly more complex things with data and this is where a deep knowledge of EF including LINQ (either SQL or Entities) is essential. Also a good understanding of which pathway you are going to follow e.g Code First, Model First or database First. If you don't understand the full implications of EF and which Code pathway you choose you will wander around in circles. Also your model structure is heavily tied into all these choices. This knowledge only comes with actual experience. I would seriously recommend getting an MVC Guru to work with your team as the team leader and allocate specific parts of the work with the Guru providing full time assistance.
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
Try this structured curated guide: http://webdev.simple-talk.com/[^] It's been put together by a few members of the .NET community including a colleague of mine from Red Gate.
-
I jumped in my first MVC 4 project without any special preparations. My colleague was already a bit familiar with the framework and he started to work on the project alone, but due to circumstances he couldn't make the deadline so I was called in to help out where I could and finish. He explained the basics and I also found some tutorials online. Both of us made some mistakes, most common mistake was not following naming conventions (which is btw really important if you want to take full advantage of the framework). At the end it turned out okay. It wasn't a frustrating first experience and it didn't take long before it felt right. Also, to jump in an application that was already partly finished helped a lot because you have some examples from which you can build on.
.
Hello, If your team is familiar with rich javascript application, then they will have not that much trouble. The link http://www.asp.net/mvc[^] which was already posted in this discussion is a very good resource. Again, if they are quite familiar with Javascript/JQuery they will be fine. IF they are not familiar with that, well... then you´re in trouble...
-
Do a quick meeting with your team, see if everyone is willing to learn the new concept. Once everyone agrees, I am sure your team could learn the concept of MVC in few days, and after that they should work on a very small project using MVC (it is very important, not just jump in after only reading and watching stuff, you need to try it out). And after 15 Days, check where everyone stands and then, you all can just jump in with the new Project that your Client/Boss wants with extra days of buffer in the timeline. It is lot of work, but it's possible. And if you think that after 15 days of trying, the whole thing is not working, just say 'no' with facts and reasons. People respect when you say 'no' with proper justification. IMHO: for learning, read a book. It's OK if you don't read the whole book and only first few chapters. But before you start watching videos, you should read a book. You should learn the basic concepts thoroughly and only a book can teach you in a detail. Good luck. :)
Remind Me This - Manage, Collaborate and Execute your Project in the Cloud
Thanks a bunch, have been putting my peeps through the rigor. Reading online as and when we encounter problems. Asp.net makes it as difficult as possible to learn simple things, but yea we have been getting along.
Learning all the way...
-
I jumped in my first MVC 4 project without any special preparations. My colleague was already a bit familiar with the framework and he started to work on the project alone, but due to circumstances he couldn't make the deadline so I was called in to help out where I could and finish. He explained the basics and I also found some tutorials online. Both of us made some mistakes, most common mistake was not following naming conventions (which is btw really important if you want to take full advantage of the framework). At the end it turned out okay. It wasn't a frustrating first experience and it didn't take long before it felt right. Also, to jump in an application that was already partly finished helped a lot because you have some examples from which you can build on.
.
Thats comforting. I am counting on my good luck.
Kind Regards, - Will william@enziq.com www.enziq.com
-
William Emmanual wrote:
I have been asked to upgrade my entire team to "MVC ready" in 15 days
If you have previous experience with web programming and .NET, 15 days should be more than enough.
Yes I do.
Learning all the way...
-
Try the nerd dinner tutorial. It's the "Hello World" for ASP.NET MVC. It was written with MVC 1.0, but should still work nicely. It's how I learned, and the concepts are really nice and clear. Also, Nerd Dinner is maintained at codeplex.com, where you can, after taking the tutorial, take a look at how the enhancements since MVC 1 have come into play. The Nerd Dinner tutorial can be found here: http://aspnetmvcbook.s3.amazonaws.com/aspnetmvc-nerdinner_v1.pdf[^] You should be able to complete it within a day or two and have a great foundation for being MVC ready.
Thanks for sharing. I have shared with my team
Learning all the way...
-
I've spent a lot of time on MVC3/4. A few people have suggested the pluralsight tutorials, which are a good intro, particularly Scott Allen's series. However I have to sound a rather negative warning in that I do not believe that it is possible to get proficient in MVC in 15 days and that this is asking for problems. The reason I say this is MVC is only the architecture. The real expertise is required when you start doing slightly more complex things with data and this is where a deep knowledge of EF including LINQ (either SQL or Entities) is essential. Also a good understanding of which pathway you are going to follow e.g Code First, Model First or database First. If you don't understand the full implications of EF and which Code pathway you choose you will wander around in circles. Also your model structure is heavily tied into all these choices. This knowledge only comes with actual experience. I would seriously recommend getting an MVC Guru to work with your team as the team leader and allocate specific parts of the work with the Guru providing full time assistance.
I know that makes rational sense, I haven't really known any MVC expert. I can get my HR to scout for someone.
Learning all the way...
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
15 days? I'd start polishing my resume now and then have a serious talk with whoever issued this ludicrous directive. I worked for a guy like that once, he wanted 2 completely tested new versions of our product (a large enterprise-level system) in 30 days. I called in the "white coats". The guy wasn't there too long after that one!
-
Thanks a bunch, have been putting my peeps through the rigor. Reading online as and when we encounter problems. Asp.net makes it as difficult as possible to learn simple things, but yea we have been getting along.
Learning all the way...
You could give each team member an area to specialise in once they've covered a certain amount of basics. Then have them give a presentation each - on learning resources as well as how-to's...
-
Do a quick meeting with your team, see if everyone is willing to learn the new concept. Once everyone agrees, I am sure your team could learn the concept of MVC in few days, and after that they should work on a very small project using MVC (it is very important, not just jump in after only reading and watching stuff, you need to try it out). And after 15 Days, check where everyone stands and then, you all can just jump in with the new Project that your Client/Boss wants with extra days of buffer in the timeline. It is lot of work, but it's possible. And if you think that after 15 days of trying, the whole thing is not working, just say 'no' with facts and reasons. People respect when you say 'no' with proper justification. IMHO: for learning, read a book. It's OK if you don't read the whole book and only first few chapters. But before you start watching videos, you should read a book. You should learn the basic concepts thoroughly and only a book can teach you in a detail. Good luck. :)
Remind Me This - Manage, Collaborate and Execute your Project in the Cloud
Rutvik Dave wrote: And if you think that after 15 days of trying, the whole thing is not working, just say 'no' with facts and reasons. People respect when you say 'no' with proper justification. In my opinion the best way to go is to warn your boss that it is not possible, explaining the reasons, the possible outcomes and some alternative solutions. Good bosses know that after getting a 'no' for an answer, comes a "so what do we do?" question.
-
William Emmanual wrote:
I have been asked to upgrade my entire team to "MVC ready" in 15 days!
Go back to the person who made this request and explain why that is not realistic.
Veni, vidi, abiit domum
Actually, I would go back to the requestor and challenge their assumption. Why 15? Why not 16 or 30 or 1? Once it's been established that 15 is a completely arbitrary, totally pulled-out-of-someone's-ass number, then start talking about what's realistic. I don't think OP said in what environment he's currently working. If it's something like Java, then maybe it's not too bad; you know OO concepts, are used to working with an IDE. Moving from Eclipse or whatever to VS won't be totally foreign. Of course, moving the existing software itself is a big job. However, if OP is doing something like COBOL or C, then it's a much, much, larger challenge. You have to start with a lower-level, learning the OO concepts and such.
-
Rutvik Dave wrote: And if you think that after 15 days of trying, the whole thing is not working, just say 'no' with facts and reasons. People respect when you say 'no' with proper justification. In my opinion the best way to go is to warn your boss that it is not possible, explaining the reasons, the possible outcomes and some alternative solutions. Good bosses know that after getting a 'no' for an answer, comes a "so what do we do?" question.
You are right, but I always want to try first before saying 'no'. That way I will have strong reasons on why I failed. He has 15 days, why not give it a try. :)
Remind Me This - Manage, Collaborate and Execute your Project in the Cloud
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
Join Pluralsight[^] Their training is awesome, and they have an extensive list of videos on MVC. No, I don't work for them, or have any ties to them, other than being a very happy customer of theirs for about 3 years now. It's helped me tremendously. Of course, you'll pretty much have to devote full time to studying if you want to learn it that fast.
I have always wished for my computer to be as easy to use as my telephone; my wish has come true because I can no longer figure out how to use my telephone - Bjarne Stroustrup The world is going to laugh at you anyway, might as well crack the 1st joke! My code has no bugs, it runs exactly as it was written.
-
Rutvik Dave wrote:
for learning, read a book. It's OK if you don't read the whole book and only first few chapters. But before you start watching videos, you should read a book. You should learn the basic concepts thoroughly and only a book can teach you in a detail.
I find the combination of reading and watching to be better than either alone. I somehow seem to pick up different things from videos than I do from reading (and vice-versa).
Kevin
I agree, I also combine book, video, online articles, even Q/A on the topic that I want to learn. Videos are like attending a classroom in the school, but to get a complete picture you still need a text-book. :)
Remind Me This - Manage, Collaborate and Execute your Project in the Cloud
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
It may be doable, given that they have experience on .NET or some technologies close to that, also of course assuming they will be given this 15 days to fully grasp the concept, otherwise, it's a pipe dream from management.
CEO at: - Rafaga Systems - Para Facturas - Modern Components for the moment...
-
No seriously! I have been asked to upgrade my entire team to "MVC ready" in 15 days! :confused: So any and all help will be appreciated!
Kind Regards, - Will william@enziq.com www.enziq.com
William Emmanual wrote:
I have been asked to upgrade my entire team to "MVC ready" in 15 days!
Do nothing, but tell your manager you've succeeded. If he/she is like most Management by Magazine Articletm types I had to deal with, and this sounds like one from that tribe, they won't be able to tell whether you have or not. Just make sure your team drops MVC terms randomly into their conversations.
Psychosis at 10 Film at 11 Those who do not remember the past, are doomed to repeat it. Those who do not remember the past, cannot build upon it.