How do I update Linq to SQL dbml file?
|
|
There are three ways to keep the model in sync.
|
|||||||
|
|
http://www.huagati.com/dbmltools/
|
|||||||||||
|
|
You could also check out the PLINQO set of code generation templates, based on CodeSmith, which allow you to do a lot of neat things for and with Linq-to-SQL:
Check out the PLINQO site at http://www.plinqo.com and have a look at the intro videos. The second tool I know of are the Huagati DBML/EDMX tools, which allow update of DBML (Linq-to-SQL) and EDMX (Entity Framework) mapping files, and more (like naming conventions etc.). Marc |
|||
|
|
|
We use a custom written T4 template that dynamically queries the information_schema model for each table in all of our .DBML files, and then overwrites parts of the .DBML file with fresh schema info from the database. I highly recommend implementing a solution like this - it has saved me oodles of time, and unlike deleting and re-adding your tables to your model you get to keep your associations. With this solution, you'll get compile-time errors when your schema changes. You want to make sure that you're using a version control system though, because diffing is really handy. This is a great solution that works well if you're developing with a DB schema first approach. Of course, I can't share my company's code so you're on your own for writing this yourself. But if you know some Linq-to-XML and can go to school on this project, you can get to where you want to be. |
||||
|
|
|
I would recommend using the visual designer built into VS2008, as updating the dbml also updates the code that is generated for you. Modifying the dbml outside of the visual designer would result in the underlying code being out of sync. |
|||||||
|
|
There is a nuance to updating tables then updating the DBML... Foreign key relationships are not immediately always brought over if changes are made to existing tables. The work around is to do a build of the project and then re-add the tables again. I reported this to MS and its being fixed in VS2010. |
|||
|
|
SqlMetalPlus- A VS Add-in to Manage Custom Changes to DBML This add-in adds easily accessible context menu commands to your DBML files to either apply custom changes or to refresh the whole DBML file with the latest changes from the database. |
||||
|
|
|
http://visualstudiogallery.msdn.microsoft.com/6e941187-6ae0-4ad3-994c-77d833c043c0 A simple free tool that does the job for me... |
|||
|
|
