5 instantiations of ProviderIncompatibleException
System.Data.Entity (2)
System\Data\Common\EntityUtil.cs (2)
488return new ProviderIncompatibleException(error); 491return new ProviderIncompatibleException(error, innerException);
System.Data.Entity.Design (3)
System\Data\Entity\Design\Common\EDesignUtil.cs (2)
157return new ProviderIncompatibleException(message); 162return new ProviderIncompatibleException(message, inner);
System\Data\Entity\Design\Common\MetadataUtil.cs (1)
66ProviderIncompatibleException e = new ProviderIncompatibleException(error);
18 references to ProviderIncompatibleException
System.Data.Entity (13)
System\Data\Common\DbProviderServices.cs (5)
64catch (ProviderIncompatibleException) 144catch (ProviderIncompatibleException) 172catch (ProviderIncompatibleException) 200catch (ProviderIncompatibleException) 226catch (ProviderIncompatibleException)
System\Data\Common\EntityUtil.cs (5)
425static internal ProviderIncompatibleException CannotCloneStoreProvider() { 487static internal ProviderIncompatibleException ProviderIncompatible(string error) { 490static internal ProviderIncompatibleException ProviderIncompatible(string error, Exception innerException) { 514static internal ProviderIncompatibleException GeographyValueNotSqlCompatible() 519static internal ProviderIncompatibleException GeometryValueNotSqlCompatible()
System\Data\Mapping\Update\Internal\UpdateTranslator.cs (1)
828return !(e is UpdateException) && !(e is ProviderIncompatibleException);
System\Data\Metadata\StoreItemCollection.Loader.cs (2)
164catch (ProviderIncompatibleException e) 205private void AddProviderIncompatibleError(ProviderIncompatibleException provEx, Action<string, ErrorCode, EdmSchemaErrorSeverity> addError)
System.Data.Entity.Design (5)
System\Data\Entity\Design\Common\EDesignUtil.cs (2)
155static internal ProviderIncompatibleException ProviderIncompatible(string message) 160static internal ProviderIncompatibleException ProviderIncompatible(string message, Exception inner)
System\Data\Entity\Design\Common\MetadataUtil.cs (2)
64static internal ProviderIncompatibleException ProviderIncompatible(string error) 66ProviderIncompatibleException e = new ProviderIncompatibleException(error);
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (1)
394catch (ProviderIncompatibleException)