@MovGP0 It seems unlikely that we will add such an initializer to the core EF code. However, you can create any initializer you want by implementing the IDatabaseInitializer interface. You would then need to determine the source for the tables and constraints that you want to drop (maybe you store this in the database yourself, keep it in a look aside file, or just blindly drop everything) and send appropriate commands to the database to do the drops. You might also want to consider using Migrations since the "down" Migrations can be used to drop everything down to an empty database.
Thanks,
Arthur
Thanks,
Arthur