/// <summary>
 ///     Initializes a new instance of the <see cref = "DbUpdateConcurrencyException" /> class.
 /// </summary>
 /// <param name = "context">The context.</param>
 /// <param name = "innerException">The inner exception.</param>
 internal DbUpdateConcurrencyException(InternalContext context, OptimisticConcurrencyException innerException)
     : base(context, innerException, involvesIndependentAssociations: false)
 {
 }
Esempio n. 2
0
 private void ConcurrencyExceptionHandler(OptimisticConcurrencyException ex)
 {
     Logger.ErrorException("A Concurrency Exception Occurred Updating Entities", ex);
 }