Does DevForce use the same transaction for validation and the save

73 Views Asked by At

I can't seem to find this on their site or here. I'm hoping the answer is YES. Specifically I want to write a Verifier to check for unique key violations (I know I will have to raise the isolation level to Serializable). This won't work unless the Verifier runs in the same transaction as the Save.

1

There are 1 best solutions below

3
On BEST ANSWER

DevForce does not use the same transaction for validation and save processing. Within the context of an EntityServerSaveInterceptor, authorization and validation are performed and then a TransactionScope is opened when doing the actual save. If you do a query within a verifier it will use a separate TransactionScope.

You can work around this behavior with a little extra work in your custom EntityServerSaveInterceptor. Override the ValidateSave function to bypass validation, then override the ExecuteSave method to open a TransactionScope and then do your validation logic before calling the base save logic. The TransactionScope opened by DF during the save will enlist in your TransactionScope. Something like this:

public class EntityServerSaveManager : EntityServerSaveInterceptor {

  protected override bool ValidateSave() {
    // will do validation later
    return true;
  }

  protected override bool ExecuteSave() {
    using (var ts = new TransactionScope(TransactionScopeOption.Required, this.SaveOptions.TransactionSettings.ToTransactionOptions())) {
      // Do validation logic now
      ...

      // Now do save
      base.ExecuteSave();
      ts.Complete();
    }
  }
}