MetaGuru
MetaGuru

Reputation: 43873

Automatically sync updates to DBML across multiple .NET projects?

Every time we update the database and DBML of one project we usually must update them across the rest of them as well.

Can anyone think of a clever way of auto-syncing/updating a DBML file across multiple .NET projects?

Upvotes: 0

Views: 351

Answers (1)

Paul
Paul

Reputation: 36339

Well, the easiest way is to have that DBML as part of its own project, and then have your other projects depend on the DLL out put from the project that's holding the DBML file.

Upvotes: 2

Related Questions