I have a few questions about creating a database from a model.
Is it possible to do this at runtime? I know you can generate the create sql in the designer but what about during runtime?
Can you create the DDL without creating a connection? Just kind of annoying to add a connect for the sole purpose of creating the DDL.
Is there an automatic way to handle alters? Like if I update the entity/table am I going to have to manually alter the table or is there anything to handle that?
Whats going on in EntityContext.CreateDatabase for sqlce? When I call it I have to recreate the context otherwise I cannot create the tables as they already 'exist'. But they don't really exist as any inserted data is not saved.