「リクエストごと」のタイプのシナリオを利用するようにStructureMapでDapperをセットアップしようとしています。私のGlobal.asaxには、次のものがあります(NHibernateを含むAyendeの古い投稿から変更され、BuildUp()
StructureMapでメソッドについて説明していることがわかりました)。
protected static IDbConnection CreateConnection() {
var settings = ConfigurationManager.ConnectionStrings["MyConnectionString"];
var connection = DbProviderFactories.GetFactory(settings.ProviderName).CreateConnection();
if (connection == null) {
throw new ArgumentNullException("connection");
}
connection.ConnectionString = settings.ConnectionString;
return connection;
}
public static IDbConnection CurrentConnection {
get { return (IDbConnection)HttpContext.Current.Items["current.connection"]; }
set { HttpContext.Current.Items["current.connection"] = value; }
}
public Global() {
BeginRequest += (sender, args) => {
CurrentConnection = CreateConnection();
CurrentConnection.Open();
};
EndRequest += (sender, args) => {
if (CurrentConnection == null) return;
CurrentConnection.Close();
CurrentConnection.Dispose();
}
}
void Application_Start(object sender, EventArgs e) {
ObjectFactory.Initialize(x => {
x.For<IDbConnection>().Singleton().Use(CreateConnection());
x.For<ICustomerRepository>().Use<CustomerRepository>();
x.SetAllProperties(y => y.OfType<ICustomerRepository>());
});
}
// BasePage.cs
public class BasePage : System.Web.UI.Page {
public IDbConnection CurrentConnection { get; set; }
public BasePage() {
ObjectFactory.BuildUp(this);
}
}
これを呼び出そうとするたびに、BeginRequestハンドラーのブレークポイントは、接続でOpen()が呼び出されていることを示していますが、実際のクエリは、接続の現在の状態が閉じていることを示すエラーで失敗します。
各リポジトリメソッド内のIDbConnectionで手動でOpenとCloseを呼び出すと機能するようですが、可能な限りそうする必要がないようにしています。