vote up 1 vote down star

if you have a class library project that acts as ur DAL and it has an App.Config file with connectionstrings, how can I force it to use that config file? It keep getting values from the web.config in my Web Application project.

The DAL project uses LinqToSql. When I instansiate a DataContext object in my Web Application, from the referenced DAL Class Library project, can I make it use it's app.Config connectionstrings? It seems to ignore this file and tries to pick up connectionstrings from the web.Config connectionstrings node. There are no connectionstrings present there.

Any help is appreciated. A colleague mentioned making the app.Config in the DAL and embedded resource. Does that sounds like a good idea?

Thanks, ~ck in San Diego

flag

40% accept rate
Can you show us the folder structure you are using and the locations of DLLs / configs? – ck Nov 10 at 8:23

3 Answers

vote up 2 vote down

Web applications always use web.config. Desktop applications always use app.config.

link|flag
If you need to override it, I'd move the configuration settings either to web.config or to an XML file that you can manage and deploy manually. – Jeff S Aug 20 at 0:36
vote up 0 vote down

how can I force it to use that config file? It keep getting values from the web.config in my Web Application project.

You can't. If you use the System.Configuration classes, they will always pull from the active application's .config file (app.config for executables, web.config for asp.net websites).

Workarounds include using file i/o for reading your settings out (as opposed to the System.Configuration namespace) or putting your DAL configuration information in the appropriate .config file (the more common choice).

link|flag
vote up 0 vote down

I'm not sure, but take a look at that:

using System.Configuration;

ExeConfigurationFileMap Map = new ExeConfigurationFileMap();

Map.ExeConfigFilename = FileName;

Configuration Conf = ConfigurationManager.OpenMappedExeConfiguration(Map, ConfigurationUserLevel.None);

AppSettingsSection section = (AppSettingsSection)Conf.GetSection("???");
link|flag

Your Answer

Get an OpenID
or

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