vote up 5 vote down star
3

I have been using LINQ to SQL for a while, and there is one thing that has always bothered me. Whenever I modify the schema of a table, in order to refresh it in the designer, I have to delete it and then add it back. That's fine, but this means I have to actually find the table in the designer. I have about 100+ tables in my database, and every time I do this, it's like finding a needle in a haystack. Well, maybe it's not that bad, but seriously, it takes way longer than it should.

Is there another option for refreshing tables that I am unaware of?

flag

8 Answers

vote up 6 vote down check

Some people use SqlMetal to 'refresh/update' their Linq2Sql designer. The designer does not have support for refreshing the schema, when the DB changes. You have to manually drop the table and re-add it back in.

ADO Entity Framework i believe can refresh. I've not used it, but I think I saw this at a TechEd demo this year.

Helpful Info: Google's results for SqlMetal.

link|flag
SqlMetal is the answer. You just call it with a few parameters and tell it where to output the code file and you are set. I'm not sure what kinds of optimizations it has over the designer, but it is way faster and requires no unnecessary drag and drop. Sweet! (and thanks) – codeflunky Dec 8 '08 at 21:30
EF doesn't really refresh - it replaces the entire SSDL so you'll lose any customizations you may have made to the SSDL. – KristoferA Dec 9 '08 at 6:24
vote up 1 vote down

I have written an add-in that can do that (in both directions; database -> DBML or DBML- -> SQL-DDL diff script).

Unlike SQLMetal (or EF's "update model from database") mentioned in another reply, the add-in does a true sync/refresh; applying changes corresponding only to the differences between the model and the underlying db.

That means any customizations (renamed properties/navigation properties etc) that you have made in other areas of your model will not be removed/overwritten unless they are in conflict with the underlying db schema. (in which case you can still preserve them by adding them to the add-in's "exclusion list")

You can download it and get a free 30-day trial license from http://www.huagati.com/dbmltools/

link|flag
vote up 1 vote down

I don't do any customization of the content on the designer so after table changes I just hit CTRL+A followed by DEL. Then shift-select all of my tables and slap them back onto the designer. I don't have 100s of tables yet so not sure if things slow down at some point but with 20+ tables it just takes a second.

link|flag
That is definitely something I have found myself doing as well, but with 100 tables it is a tad slower than I would like. – codeflunky Dec 8 '08 at 20:49
vote up 2 vote down

This is not possible using the VS linq to sql designer.

You can do this using LLBLGEN PRO, a third party tool, instead of the built-in linq to sql designer. It isn't free but it does do a ton of other stuff as well, which of course you may or may not need.

LLBLGEN PRO is actually a full set of ORM tools, but also includes an enhanced linq-to-sql designer with 'refresh model from SQL' functionality.

See here for description of the issue - http://weblogs.asp.net/fbouma/archive/2008/05/01/linq-to-sql-support-added-to-llblgen-pro.aspx And here for the tool - http://www.llblgen.com/

link|flag
vote up 0 vote down

There are a couple of other options:

  1. Edit the .dbml file that the designer uses to draw the tables and generate the code. I've used this approach when the changes are small (adding a couple of columns, creating a simple table)
  2. Use sqlmetal to create the required xml for the changed tables and move the declarations by hand to the .dbml file. This one is better for when the changes are either more complex or larger.
link|flag
vote up 0 vote down

There's a template for VS 2008 that replaces the designer, it should ease refreshing your LINQtoSQL classes: http://damieng.com/blog/2008/09/14/linq-to-sql-template-for-visual-studio-2008

link|flag
This template replaces the DBML to code phase but not the database to DBML phase which is where the user is having the problem. – DamienG Dec 8 '08 at 18:38
vote up -1 vote down

I personally detest using the designer, and I've had various issues with it whenever I've dared to use it.

I mostly use LINQ for very simple CRUD (no linked entities or anything), and if that's the case with you, it might be worth straying from the designer crutch. Especially since defining LINQ-to-SQL entities is as easy as this:

[Table("dbo.my_table")]
public class MyTable
{
[Column("id", AutoSync = AutoSync.OnInsert, IsDbGenerated = true, IsPrimaryKey = true)]
public Int32 Id { get; set; }

[Column("name", DbType="NVarChar(50) NOT NULL")]
public String Name { get; set; }
}

This way, all your entities have their own files, which makes finding them much easier, though you'll still have to add/update the properties manually.

Of course, if you'd refactor 100+ tables, that might not be an option ;)

link|flag
Thanks for the suggestion, but I wouldn't really want to get into the situation of hand coding all of this. I like code generation, I just don't like the poor refresh support. – codeflunky Dec 5 '08 at 22:24
vote up 0 vote down

I have had simliar issues with the designer - the best thing I can suggest is creating multiple contexts for different areas of your data access - I broke mine down to as few a related tables as I could get away with for each functional area. You can re-use tables across contexts so it isn't a big deal.

link|flag
That makes sense, but for my situation, I don't think it would be worth the tradeoff of having to remember which context to use for which table. – codeflunky Dec 5 '08 at 22:25
Plus if you use the same table in different contexts, if you update that table you need to remember to update all the contexts it was used in. – webdtc Dec 5 '08 at 23:15

Your Answer

Get an OpenID
or

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