Exemple #1
0
        /// <summary>
        /// 初始化 <see cref="Database"/> 类的新实例。
        /// </summary>
        protected Database()
        {
            tranStack = new TransactionStack();
            dbScope   = new DatabaseScope(this);
#if !NET35 && !NET40
            taskMgr = new AsyncTaskManager(this);
#endif
        }
Exemple #2
0
 /// <summary>
 /// 初始化 <see cref="Database"/> 类的新实例。
 /// </summary>
 protected Database()
 {
     tranStack = new TransactionStack();
     dbScope   = new DatabaseScope(this);
 }
Exemple #3
0
 /// <summary>
 /// 初始化 <see cref="Database"/> 类的新实例。
 /// </summary>
 protected Database()
 {
     tranStack = new TransactionStack();
     dbScope   = new DatabaseScope(this);
     Track     = DefaultCommandTracker.Instance;
 }