vote up 1 vote down star

I'm using LINQ on a small project and basically used the visual designer to drag tables from the server explorer in Visual Studio to the designer surface. Then I saved the DBML file and all classes were generated automatically. This included a designer.cs file for my DataContext. Everything seemed to work fine on my development machine, but when I uploaded the needed files to the production server the designer.cs file was throwing a compilation error. I noticed that the connection string name was hardcoded, so I changed it manually to the right name but there were still errors.

So my question is - how do you deploy DBML and respective auto-generated files on a production server?

flag

75% accept rate

closed as not programming related by Slavo Sep 16 '08 at 13:41

5 Answers

vote up 2 vote down check

At runtime, you just need to inject the REAL connectionstring like this.

var context = new MyDataContext(ConnectionString)

It's that simple. You'll probably want to store the real connection string in the application's config file, or wherever your company usually puts such things.

link|flag
vote up 1 vote down

Derive another DataContext class from your generated DataContext with a single default constructor...

public class MyDataContext : GeneratedDataContext
{
    public MyDataContext() : base(GetConnectionString())
    {
    }

    private string GetConnectionString()
    {
        return < connection string from config >
    }
}

Then, just use the derived MyDataContext.

I use a variation of this when I'm instantiating DataContext classes using Unity for dependency injection - as Unity gets confused with the plethora of constructors that are generated by the designer.

link|flag
vote up 0 vote down

Mel's correct and I'm still a peon.

link|flag
vote up 0 vote down

Thank you!

But what if I want to use the parameter-less constructor for the data context object? Is there a way to do it then?

link|flag
vote up 0 vote down

Slavo, the Connection property of DataContext is read-only, so I don't think you could use the parameterless constructor and then fill the connection in afterwards without resorting to a lot of reflection "hand-waving". However, the ConnectionString property of DbConnection is read/write, so you might be able to call the parameterless constructor on DataContext, and set the ConnectionString on dc.Connection before making your calls to the database. I haven't personally tried this, but it seems like it might be worth a shot.

link|flag

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