We have a challenge between choosing AutomaticMigrationsEnabled false or true in Migrations configuration class. Do we have any best practice for AutomaticMigrationsEnabled in EF projects which are using Migrations?
More declaration: We have a problem when someone is modifying a model ,then "add-migration" and "update-databse" but don't want to checkout the model and migration that was already created! some other developers want to run project, an error will raise "Can not drop database because it is in use" every time this happen the first modifier should check in whole project and others should get. this situation is annoying, I want to know if there is any solution for this kind of problems. thanks in advance.
