3 overrides of HasAnyValidateMethod
System.Data.Linq (3)
Mapping\AttributedMetaModel.cs (1)
839public override bool HasAnyValidateMethod {
Mapping\MappedMetaModel.cs (2)
916public override bool HasAnyValidateMethod { 1694public override bool HasAnyValidateMethod {
5 references to HasAnyValidateMethod
System.Data.Linq (5)
ChangeProcessor.cs (3)
247if (item.Type.HasAnyValidateMethod) { 251if (item.Type.HasAnyValidateMethod) { 256if (item.IsModified && item.Type.HasAnyValidateMethod) {
Mapping\AttributedMetaModel.cs (1)
589this.hasAnyValidateMethod = (this.onValidateMethod != null) || (this.InheritanceBase != null && this.InheritanceBase.HasAnyValidateMethod);
Mapping\MappedMetaModel.cs (1)
626this.hasAnyValidateMethod = (this.onValidateMethod != null) || (this.InheritanceBase != null && this.InheritanceBase.HasAnyValidateMethod);