Is there a ways for EF Core to create the database but not the tables, as all I need is the database to be made, and then run fluent migrator to do the actual migrations?
Do you mean an empty database, or a database with something in it (procedures? views?), just not tables? In the former case a CREATE DATABASE foo statement would be sufficient. EF probably has an appropriate place to hook that somewhere, but if not you could certainly just run that as a plain old SQL command.
CREATE DATABASE foo
statement would be sufficient. EF probably has an appropriate place to hook that somewhere, but if not you could certainly just run that as a plain old SQL command.