Reputation: 43873
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
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