vote up 26 vote down star
26

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?

flag

67% accept rate

8 Answers

vote up 26 vote down check

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

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|flag
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
1  
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
Works great ! – Svish Jun 9 at 16:37
vote up 3 vote down

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|flag
This is what we're doing...and it's starting to get very annoying! :-) – Richard E Nov 27 '08 at 13:10
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

@mharen Thanks, I had a feeling that might be the case. I was just hoping I was missing an obvious context menu item or something!

link|flag
vote up 0 vote down

The best way is to re sync the designer. Since it is automatically generated code it should not be too much work.

If you are writing the classes yourself then you are stuck doing the updates.

link|flag
What do you mean "re sync the designer" ? I cannot find such a feature in Visual Studio 2008? It seems pretty well documented that there is no feature in VS to update a table in the dbml by re-scanning the database server schema for that table." Please clarify what you are telling us? – MattSlay Oct 14 at 15:52
vote up 0 vote down

@vzczc Thanks, that's pretty much perfect for my needs. Saves lots of unnecessary drag and drop and it's free!

link|flag

Your Answer

Get an OpenID
or

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