Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using LINQ to SQL classes in a project where the database design is still in a bit of flux.

Is there an easy way of synchronising the classes with the schema, or do I need to manually update the classes if a table design changes?

share|improve this question
possible duplicate of How to update Linq to SQL dbml file? – Frankston Ralphington III Oct 7 '12 at 4:19

5 Answers

up vote 56 down vote accepted

You can use SQLMetal.exe to generate your dbml and or cs/vb file. Use a pre-build script to start it and target the directory where your datacontext project belongs.

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\x64\sqlmetal.exe 
  /server:<SERVER> 
  /database:<database> 
  /code:"path\Solution\DataContextProject\dbContext.cs" 
  /language:csharp 
  /namespace:<your namespace>
share|improve this answer
This is great! I figured I just had to redrag everything into the dbml. – naspinski Sep 19 '08 at 7:17
11  
unfortunately there is no option to filter only the desired tables/sprocs/schemas... – Seiti Dec 22 '08 at 16:42
I created a utility to help with the filtering. It lets you choose the tables you want to exclude, and also to select the tables where you want the updatecheck.never for non pk columns. Let me know if anyone wants the source code. – vzczc Apr 25 at 8:13

I haven't tried it myself, but Huagati DBML/EDMX Tools is recommended by other people.

Huagati DBML/EDMX Tools is an add-in for Visual Studio that adds functionality to the Linq2SQL/DBML diagram designer in Visual Studio 2008, and to the ADO.NET Entity Framework designer in Visual Studio 2008 SP1. The add-in adds new menu options for updating Linq2SQL designer diagrams with database changes, for renaming Linq-to-SQL (DBML) and EF (EDMX) classes and properties to use .net naming conventions, and for adding documentation/descriptions to Linq-to-SQL generated classes from the database properties.

Screenshot of DBML Tools

share|improve this answer
FYI -- there is a free 30 trial available at that site, and a single user license fee of just over $100. – Dan Esparza Nov 14 '08 at 18:26
2  
I've tried it. Seems to work as expected - doesn't interfere with existing relationships, etc (which saves a big pain in the butt of having to rename tables, re-establish serialization properties on relationships, etc.) Thanks for the link! – Dan Esparza Nov 14 '08 at 18:57
2  
Works great ! – Svish Jun 9 '09 at 16:37
2  
Really great stuff! – Stuck Dec 22 '09 at 13:38
Correction, $199 and a trial with limited features. Not sure it's worth it. – Levitikon Sep 5 '12 at 18:11

DamienG has written some t4 templates which can replace some of what VS generates for you. These can be rerun whenever you like via a command line tool.

T4 templates have the added benefit of being editable. This allows you to tweak what is generated to you hearts content.

share|improve this answer

I think Jeff complained about this recently. One common technique is to drag all the objects into the designer again...

I hope someone else chimes in with a better approach!

share|improve this answer
This is what we're doing...and it's starting to get very annoying! :-) – Richard Ev Nov 27 '08 at 13:10

I wrote a tool to do script changes to Dbml scripts see http://code.google.com/p/linqtodbmlrunner/ and my blog http://www.adverseconditionals.com

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.