I am using Entity Framework 5 (4.4.0) for .NET 4
I have a model created in code, as I did with several others. When I run my application, it creates the database, but does not create any tables. After that the application, exits with no error message - even in debug mode. I have no clue what the problem is.
Is any one else having this problem?
Is the order important when creating the context class?
public DbSet<Order> Orders ...
public DbSet<OrderDetail> OrderDetails ...
Or can it be in any order?