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: 24.2.419.0 (24.2.419.0)
Syntax public 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