I'm trying to use the code-first approach with a MySQL db.
The kicker here, is that I can't drop and create the DB (on my hosting company) so I can't automagically create the tables in the database. I've looked at http://nuget.org/List/Packages/EFCodeFirst.CreateTablesOnly and Entity Framework CTP 4 - Code First Custom Database Initializer but I can't seem to get that to work with my MySQL.
Edit: Basically I'm looking for a solution that works like the above - by ONLY dropping and creating tables, and not the database itself, with MySQL.
Has anyone had any luck with this approach?
Thanks