The version of LLBLGEN that I'm using is LLBLGEN Pro. version 1.0.2005.1 Final.
I would like to configure my project to read the connection string from from <connectionStrings> section of the config file and not from <appSettings>. I know that the connection string key name can be given from Main Menu > Project > Properties > Project specific properties tab > Output Settings group > ConnectionStringKeyName. But I'm unable to locate a setting to make it read from <connectionStrings> section of the config file and not from <appSettings>.
Right now the code that is generated is:
AppSettingsReader configReader = new AppSettingsReader();
return configReader.GetValue(DataAccessAdapter.ConnectionStringKeyName, typeof(string)).ToString();
===============
Instead of AppSettingsReader, since I'm placing the connection string in the <connectionStrings> section, I would like to read it from there.
any help on this is highly appreciated.
Thanks,
Alpana