Interface ITransactionalStorage
Interface for storage providers which have controllable transactions.
Namespace: VDS.RDF.Storage
Assembly: dotNetRDF.dll
Syntax
public interface ITransactionalStorage
Remarks
It is up to the implementation whether transactions are per-thread or global and how transactions interact with operations performed on the storage provider. Please see individual implementations for notes on how transactions are implemented.
Methods
| Improve this Doc View SourceBegin()
Begins a transaction.
Declaration
void Begin()
Commit()
Commits a transaction.
Declaration
void Commit()
Rollback()
Rolls back a transaction.
Declaration
void Rollback()