vote up 1 vote down star

Hello,

I want to use SubSonic 2.1 to connect to 2 different databases (each having different tables). What is the best way to do this? What is the best way to seperate the generated code between the 2 databases and how can I switch between databases?

flag
As a note SubSonic 2.2 is basically a bug fix release for 2.1 and I would recomment using 2.2 for all users targeting 2.1 as the api did not change between 2.1 and 2.2 – runxc1 Aug 18 at 18:12

3 Answers

vote up 3 vote down

Hi,

I think this has already been answered here: http://stackoverflow.com/questions/968391/subsonic-dynamic-connections

link|flag
vote up 1 vote down

I do this on quite a few projects with 2.2 and find that i dont need to impliment the "shared connection scope"

I set my class library up with the databases, give all the databases all a different name and namespace and gen it.

Then when i need to call them i am specific about what i am calling

ie

SqlQuery q = new Select()
             .From(Tables.Products);

becomes

SqlQuery q = new Select()
             .From(Data.Database1.Tables.Products);

if its still failing i've found i can do the following

SqlQuery q = Data.Database1.DB.Select()
             .From(Data.Database1.Tables.Products);
link|flag
vote up 0 vote down

Hey Doug could you please give me an example of the above code? In which namespace is the Data object (from Data.Database1) and do you need to set multiple providers in the web.config because you need to connect to multiple databases?

link|flag

Your Answer

Get an OpenID
or

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