We are working with VS2012, Entity Framework 4 db-first on SVN Source Control.
We have an issue with Entity Framework when we want to make changes in the database. the programmer that uploaded the EF model to the source control can change the db and after we update our version it workes fine. but if one of the other programmers changes the db and commit his changes the EF model corrupts and we must that the first programmer insert the db changes to make it work.
In his solution the CodeGenerationStrategy property is T4 and in our soultion the CodeGenerationStrategy property is None.
How can we fix this?
Thanks.
we upgraded to vs2015 and it fix this.