コード例 #1
0
ファイル: BaseTest.cs プロジェクト: mbsky/dotnetmarcheproject
        protected virtual ISession CreateSession()
        {
            IDbConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings[ConnectionStringName].ConnectionString);

            con.Open();
            return(GlobalSetup.CreateSession(con));
        }
コード例 #2
0
 protected override ISession CreateSession()
 {
     return(GlobalSetup.CreateSession());
 }