コード例 #1
0
        public ISqlCommandCatchingScope EnableCatching()
        {
            var scope = new SqlCommandCatchingScope(this);

            _activeScopes.Add(scope);
            return(scope);
        }
コード例 #2
0
 public void Release(SqlCommandCatchingScope scope)
 {
     _activeScopes.Remove(scope);
 }