You can create the Provider manually by passing the connection string to:
var p = ProviderFactory.GetProvider("connectionstring", "System.Data.SqlClient");
, . IoC, SubSonic IDataProvider:
ForRequestedType< IDataProvider >()
.TheDefault.Is.ConstructedBy(x =>
ProviderFactory.GetProvider("connectionstring", "System.Data.SqlClient"));
IoC:)
user1151