up vote 52 down vote favorite
43
share [g+] share [fb]

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?

link|improve this question

67% accept rate
feedback

5 Answers

up vote 47 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>
link|improve this answer
This is great! I figured I just had to redrag everything into the dbml. – naspinski Sep 19 '08 at 7:17
8  
unfortunately there is no option to filter only the desired tables/sprocs/schemas... – Seiti Dec 22 '08 at 16:42
feedback

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

link|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
feedback

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!

link|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
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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