1 type derived from UpdateException
System.Data.Entity (1)
System\Data\OptimisticConcurrencyException.cs (1)
22public sealed class OptimisticConcurrencyException : UpdateException
1 instantiation of UpdateException
System.Data.Entity (1)
System\Data\Common\EntityUtil.cs (1)
1642return new UpdateException(message, innerException, ProcessStateEntries(stateEntries));
7 references to UpdateException
System.Data.Entity (7)
System\Data\Common\EntityUtil.cs (5)
1637static internal UpdateException Update(string message, Exception innerException, params IEntityStateEntry[] stateEntries) { 1640static internal UpdateException Update(string message, Exception innerException, IEnumerable<IEntityStateEntry> stateEntries) 1649static internal UpdateException UpdateRelationshipCardinalityConstraintViolation(string relationshipSetName, 1669static internal UpdateException UpdateEntityMissingConstraintViolation(string relationshipSetName, string endName, IEntityStateEntry stateEntry) { 1683static internal UpdateException UpdateMissingEntity(string relationshipSetName, string entitySetName) {
System\Data\Mapping\Update\Internal\UpdateTranslator.cs (2)
759private UpdateException DependencyOrderingError(IEnumerable<UpdateCommand> remainder) 828return !(e is UpdateException) && !(e is ProviderIncompatibleException);