Exemplo n.º 1
0
        internal static SimpleTransaction Begin(DataStrategy database, string name)
        {
            SimpleTransaction transaction = CreateTransaction(database);

            transaction.Begin(name);
            return(transaction);
        }
Exemplo n.º 2
0
        internal static SimpleTransaction Begin(Database database)
        {
            SimpleTransaction transaction = CreateTransaction(database);

            transaction.Begin();
            return(transaction);
        }
Exemplo n.º 3
0
 public SimpleTransaction BeginTransaction(IsolationLevel isolationLevel)
 {
     return(SimpleTransaction.Begin(this, isolationLevel));
 }
Exemplo n.º 4
0
 public SimpleTransaction BeginTransaction(string name)
 {
     return(SimpleTransaction.Begin(this, name));
 }
Exemplo n.º 5
0
 public SimpleTransaction BeginTransaction()
 {
     return(SimpleTransaction.Begin(this));
 }