i created a data access layer dll using subsonic. however it uses the connectionstring from the app.config. i am using it in ninjatrader and dont want to mess around with the ninjatrader app.config for the connecitonstring. how do i avoid this issue.
+1
A:
I believe the best you can hope for here is to use a separate file for the connection strings:
in app.config
<connectionStrings ConfigSource="myConnStr.config" />
in myConnStr.config:
<connectionStrings >
<add .... />
<add .... />
</connectionStrings >
James Curran
2010-07-08 20:12:01
is there a way that i can force subsonic to look for connectionstring info in a xml file or programatically hardcode the connectionstring.
junkone
2010-07-08 20:33:33
+1
A:
I believe you can set it at runtime using the SetDefaultConnectionString method:
SubSonic.DataService.GetInstance("InstanceName").SetDefaultConnectionString("ConnectionString");
rtalbot
2010-07-08 20:38:26
note... make sure to replace "ConnectionString" with your connectionstring :)
Dusty Roberts
2010-07-16 09:03:18
A:
Sample how to programatically hardcode connectionstring:
string connectionString = string.Format(@"Data Source={0}", Path.Combine(this.ConfigFolder, ConfigDb));
string providerName = @"System.Data.SQLite";
var provider = ProviderFactory.GetProvider(connectionString, providerName);
_configRepo = new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations);
This sample use sqlite database which is located in this.ConfigFolder. ConfigDB contains name of a database file.
rupo76
2010-07-12 06:44:58