I have a little problem with my database. I want to create the database using Entity Framework (code-first) but all tutorials showing how to do so do it in a console application using something like this in their main class method:
exampleDb.Example.Add();
exampleDb.SaveChanges();
But I want to create my database in a WPF application. What should I do?
thanks, mm.