tags:

views:

46

answers:

1

Hi,

I have solution which has webSite and Core projects. In Core I have all model using LINQ. I there use app.Config to set paths to database in connection string used by my model.

Then I use this in my website.

Now I would like to have possibility that after deploying website on the iis to change that connections strings.

Before Linq I used web.Config to do that, now I dont know how to achieve that.

THanks for help

A: 

Put the connection string in the web.config the same way you were doing before.

Guillaume86