Create() public static method

By default, the actions are delayed and executed only after the top-level transaction commits.
Make sure to dispose of the transaction once you're done - it will actually call Commit for you
public static Create ( ActionManager actionManager ) : Transaction
actionManager ActionManager
return Transaction
Exemplo n.º 1
0
 public Transaction CreateTransaction(bool delayed)
 {
     return(Transaction.Create(this, delayed));
 }
Exemplo n.º 2
0
 public Transaction CreateTransaction()
 {
     return(Transaction.Create(this));
 }