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?
|
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?
|
||
|
|
|
|
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.
|
|||
|
|
I haven't tried it myself, but Huagati DBML/EDMX Tools is recommended by other people.
|
||||||||
|
|
|
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! |
||
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
@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! |
||
|
|
|
|
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. |
||
|
|
|
@vzczc Thanks, that's pretty much perfect for my needs. Saves lots of unnecessary drag and drop and it's free! |
||
|
|