Raven.Storage.Managed.TransactionStorageActions.TransactionExists C# (CSharp) Method

TransactionExists() public method

public TransactionExists ( System.Guid txId ) : bool
txId System.Guid
return bool
		public bool TransactionExists(Guid txId)
		{
			return storage.Transactions.Read(new RavenJObject {{"txId", txId.ToByteArray()}}) != null;
		}