I have several Entity Framework Code First DbContext objects that use a custom Initializer.
In the initializer, the call to
context.Database.Create();
creates the database in SQL Server.
The Data and Log files are created in directories per the Database Settings in SQL Server.
I would like different DbContext subclasses to have different Data and Log file paths. Can I specify the paths somehow when creating the database, or must I detach/move/attach in a separate step after the database has been created?