As I am unable to use the migrate.exe
tool to update the database, I am creating migration SQL scripts, and applying them manually, which works perfectly.
As the seed part is not included into the migrations, they do not yield an SQL script.
How could I get the seed method to generate the SQL script?
I am currently applying the seed method to my local DB. One way to solve the problem would be to intercept the SQL calls with the entity framework interceptor, but that sound like a dirty hack. So is there a better way to do it?