Why does my DB project's .dbmdl file change ev

2020-04-02 07:55发布

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?

3条回答
何必那么认真
2楼-- · 2020-04-02 08:06

If you delete the .dbml file, it is rebuilt without errors or warnings, so I think it's just a cache file for references, intellisense, etc. I'm going to exclude it from source control.

查看更多
何必那么认真
3楼-- · 2020-04-02 08:09

See related question here. The .dbmdl file is unique per user (and some kind of cache, as said above) and so the right solution is indeed to exclude it from source control.

查看更多
啃猪蹄的小仙女
4楼-- · 2020-04-02 08:13

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.

查看更多
登录 后发表回答