System.Data.ParentForeignKeyConstraintEnumerator.IsValidCandidate C# (CSharp) Method

IsValidCandidate() protected method

protected IsValidCandidate ( Constraint constraint ) : bool
constraint Constraint
return bool
        protected override bool IsValidCandidate(Constraint constraint) =>
            ((constraint is ForeignKeyConstraint) && (((ForeignKeyConstraint)constraint).RelatedTable == _table));
    }