Как я могу ввести свою собственную ConnectionString при использовании Castle Active Record?
Я получил ответ на этот вопрос от http://www.darkside.co.za/archive/2008/01/21/castle-activerecord-connecting-to-multiple-databases.aspx
IDbConnection connection = new SqlConnection("Data Source=.;Initial Catalog=TestB;Integrated Security=SSPI"); connection.Open(); using (new DifferentDatabaseScope(connection)) { TestTableDatabaseA test3 = TestTableDatabaseA.Find(1); Console.WriteLine(test3.Title); }
http://www.castleproject.org/ActiveRecord/documentation/trunk/usersguide/configref.html