I'm trying out Entity Framework Code First. I can't seem to find the assembly/namespace to use for RecreateDatabaseIfModelChanges in WPF 4.0. Is this an ASP.NET-only feature? If not, what assembly should I reference?

Here's my code:

using System;
using System.Data.Entity;
using System.Windows;
using CodeFirstTester.Models;

namespace CodeFirstTester
{
    public partial class App : Application
    {
        static App()
        {
            // this fails:
            Database.SetInitializer(new RecreateDatabaseIfModelChanges<NerdDinners>());

            // The type or namespace name 'RecreateDatabaseIfModelChanges'
            // could not be found (are you missing a using directive or
            // an assembly reference?)                

            using (var nerdDinners = new NerdDinners())
            {
                var dinner = new Dinner()
                {
                    Title = "Party at Scott's House",
                    EventDate = DateTime.Parse("12/31/2010"),
                    Address = "Building 40",
                    HostedBy = "scottgu@microsoft.com"
                };
                nerdDinners.Dinners.Add(dinner);
                nerdDinners.SaveChanges();
            }
        }
    }
}
link|improve this question

I couldn't find any MSDN documentation about that class. Are you sure, it made it into RTM? – Daniel Hilgarth Mar 31 '11 at 6:38
I found this: scottleckie.com/2011/03/…. It says, that this strategy is now called DropCreateDatabaseIfModelChanges, but I didn't find anything about that on MSDN either... strange – Daniel Hilgarth Mar 31 '11 at 6:44
@Daniel Hilgarth: Documentation is here: msdn.microsoft.com/en-us/library/gg696142%28v=VS.103%29.aspx There are also the three available implementations of IDatabaseInitializer listed, including DropCreateDatabaseIfModelChanges. – Slauma Mar 31 '11 at 12:58
feedback

1 Answer

up vote 27 down vote accepted

The initializer is called DropCreateDatabaseIfModelChanges. It can be found in EntityFramework.dll (EF 4.1) in System.Data.Entity namespace.

link|improve this answer
2  
Thanks Ladislav! I guess they renamed the strategy when they went from CTP to RC. – DanM Mar 31 '11 at 18:25
1  
Aaaaah... stupid renaming! Thanks for the answer!! – Kees C. Bakker May 16 '11 at 20:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.