To become a good programmer, one must code a lot. There is no alternative to that. However, listening to experts on podcasts, watching them code on websites like tekpub, reading blogs and most importantly reading books can add a purpose…
Git for Source Control
I have worked with SVN and VSS for source control. Both are centralized source control system. Git is distributed. It has several advantages over centralized ones. Just to mention a few: Branching is very easy,cheap and fast. This makes…
My presentation at Code Camp 5 of CT .net user group
Over the last couple of days, I had been working on my presentation and demo for the ct .net user group code camp5. I presented it today at 9.00am. yay! The packet has a code,slides and a CSS…
MVC4 SQL migrations step by step
In my earlier post , I showed how to use code first with the server where the app cant create a database. Now, we are looking to migrate our schema on to the server. It would be nice if it we…
Code first with no create DB permissions on the server
The hosting services or the production database servers do not give create db rights to the app for a lot of reasons. So, when our code first MVC app gets deployed it does not work as it tries to create…