EntitySetTEntityEnsureAll Method  | 
 
            Ensures that the entity set does not change at all before the transaction is committed.
            If another transaction commits first and makes any changes to the entity set at all,
            this transaction will raise a 
TransactionConflictException when it
            is committed.
            
 
    Namespace: 
   AGI.Foundation.Tracking
    Assembly:
   AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void EnsureAll(
	Transaction transaction
)
Public Sub EnsureAll ( 
	transaction As Transaction
)
public:
void EnsureAll(
	Transaction^ transaction
)
member EnsureAll : 
        transaction : Transaction -> unit 
Parameters
- transaction
 - Type: AGI.FoundationTransaction
The transaction for which the entity set should not change. 
See Also