vote up 0 vote down star

Hey Guys. This question may be redundant, but i could not totally understand how to do this. I need to be able to, when the users Run my Winforms app, can search for the instance of SQL if the previous one are not available. I already have the check for the DB existence, and also made a dialog wich search for all the available instance, and bulding the connection string isn't a problem. The point here is that, I need to be able to everytime the users open the app it loads the CN from a external file, and if the external file doesn't exist or the instance isn't available, i can use the app in another instance (asuming, offcourse, that the required DB is in that Instance). The point is that, i don't know how to Programmatically change Connection String, using LINQ in winforms. Thanks in advance

flag

3 Answers

vote up 3 vote down check

You should be to pass the connection string to the DataContext constructor.

var db = new MyDataContext(myconnectionstring);
link|flag
Thanks... didn't know, but now i DO! First one get the answer check – josecortesp Nov 5 at 20:12
vote up 0 vote down

A DataContext is created per 'unit of work'.

As ichiban says pass the required connection string into the constructor when creating the DC

link|flag
vote up 1 vote down
var someConnectionString = "This is my connection String";

using (var db = new SomeConcreteDataContext(someConnectionString)){
    //...Do whatever...
}
link|flag

Your Answer

Get an OpenID
or

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