Reputation:
I'm working in a team of four developers and we sometimes run into issues with EF Code First Migrations between different branches and releasing to staging from dev. We are using git.
What is the best process flow to follow between:
Upvotes: 3
Views: 171
Reputation: 2603
Read this MSDN article that addresses issues related to EF Code First Migrations in team environments.
There are a lot of branching strategies available out there, you could explore them and use the one that best suits your needs. Have a look at git-flow, which is one of the branching models for Git.
Upvotes: 1