I am using Quartz .net with an AdoJobStore jobStore. In the .config file, there is a property that is used to set the connection string:
<add key="quartz.dataSource.default.connectionString" value="Data Source=MyServer;Initial Catalog=MyDatabase;Integrated Security=True" />
However, I manage all my connection strings in a separate config file, so I currently need to dupplicate this connectionString information.
Is there a way to not specify the quartz.dataSource.default.connectionString in the .config file and manually set it via code, so I can get my value in my global connectionStrings config file?
It seams that it is possible to use a NameValueCollection when instanciating a StdSchedulerFactory, but I don't want to manage all settings, only the connectionstring.