
Introduction As many of you know, I’ve been quite the fan of Entity Framework CodeFirst for quite some time. It does a great job of reducing the number of places I have to change thngs each time I have a database schema change and also brings a ton of type safety along with it. I’ve posted before about the benefits of the auto migrations features built into CodeFirst, however I have found when I make a lot of changes to my schema, I quickly get an error saying I will have data loss so the CodeFirst Migration will not take place. In my realities, it is just too much time to go through with LINQ and try and make the perfect data migration. My reality is that I likely only have one or two databases that need sql updates … Continue Reading


