Search code examples
sql-serverdatabasevisual-studiovisual-studio-2010database-project

Why does my DB project's .dbmdl file change even when I make no changes to the project?


I'm running into a small but weird annoyance that seems to be happening to other people, too (for example, check out the revision history of SEDE). I have a SQL Server 2008 database project in Visual Studio 2010 that works properly. When I go to commit/checkin to source control, I'm told that my DB project's .dbmdl file has changed, even when I've made no changes to the project!

I'm not sure if the changes are triggered by building my solution (which also includes an ASP.NET MVC application and a unit test project) or by simply opening the DB project, but this is getting kind of annoying and is creating clutter in source control.

Is it possible to stop these changes from occurring, or get rid of the .dbmdl file whatsoever?


Solution

  • I believe Visual Studio serializes the dbmdl file every time the project is opened. The only possible work around would be to keep the project open.