/// <summary> /// Checks if the given aConcept has narrowMatch concept the given bConcept within the given scheme /// </summary> public static bool CheckHasNarrowMatchConcept(this RDFSKOSConceptScheme conceptScheme, RDFSKOSConcept aConcept, RDFSKOSConcept bConcept) { return(aConcept != null && bConcept != null && conceptScheme != null ? conceptScheme.GetNarrowMatchConceptsOf(aConcept).Concepts.ContainsKey(bConcept.PatternMemberID) : false); }