I create a solution, and inside I have three projects:
The service implementation is in project # 1, but for access to the database I use a second project that implements access to data using the class library project.
This problem is accessing data. I need to configure the connection string, but this connection string must be customizable in the production environment, I had in mind during the production process, I'm going to deploy a site, which is a very simple project that contains only a link to the WCF Service Library project, then the guy from the base department data will configure the connection string.
In development, I have app.config in the data access project, but when I make the release, app.config is built into the dll.
Any ideas how we can achieve our goal
Copeleto
source share