Create() public static méthode

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
Résultat Transaction
Exemple #1
0
 public Transaction CreateTransaction(bool delayed)
 {
     return(Transaction.Create(this, delayed));
 }
Exemple #2
0
 public Transaction CreateTransaction()
 {
     return(Transaction.Create(this));
 }