Exemplo n.º 1
0
 private void AddTupleInTransaction()
 {
     _spaceProxy.BeginTransaction();
     _spaceProxy.Add(_testTupleType, new TestTuple(_counter, _counter));
     _counter++;
     _spaceProxy.CommitTransaction();
 }