DittoSharp
0.4.0-alpha2
|
Exposes functionality that allows you to perform multiple operations on the store within a single write transaction. More...
Public Member Functions | |
DittoScopedWriteTransaction | Scoped (string collectionName) |
Creates a DittoScopedWriteTransaction object that will ensure that operations called on it are all in the context of the collection with the name provided. More... | |
Exposes functionality that allows you to perform multiple operations on the store within a single write transaction.
You must use the Scoped(string) method to get collection-scoped access to the write transaction object, which will then allow you to perform insert, update, remove or evict operations using the write transaction.
|
inline |
Creates a DittoScopedWriteTransaction object that will ensure that operations called on it are all in the context of the collection with the name provided.
You can create many DittoScopedWriteTransaction objects per DittoWriteTransaction object.
collectionName | The name of the collection that the write transaction object should be scoped to. |