コード例 #1
0
 private void FailedPrecondition(string subject, bool subjectIsBNode, string predicate, bool predicateIsBNode, string obj, bool objIsBNode, bool isLiteral, string dataType, string langCode, string graphUri)
 {
     if (_failedPreconditionsWriter == null)
     {
         _failedPreconditionsWriter = new StringWriter();
         _failedTriplesWriter = new NTriplesWriter(_failedPreconditionsWriter);
     }
     _failedTriplesWriter.Triple(subject, subjectIsBNode, predicate, predicateIsBNode, obj, objIsBNode,
                                 isLiteral, dataType, langCode, graphUri);
     FailedPreconditionCount++;
 }
コード例 #2
0
        public void Triple(string subject, bool subjectIsBNode, string predicate, bool predicateIsBNode, string obj, bool objIsBNode, bool isLiteral, string dataType, string langCode, string graphUri)
        {
            Logging.LogDebug("Try and Match Precondition {0} {1} {2} {3} {4} {5} {6}", subject, predicate, obj, isLiteral, dataType,
                 langCode, graphUri);

            var triples = _store.Match(subject, predicate, obj, isLiteral, dataType, langCode, graphUri).ToList();
            if (triples.Count == 0)
            {
                if (_failedPreconditionsWriter == null)
                {
                    _failedPreconditionsWriter = new StringWriter();
                    _failedTriplesWriter = new NTriplesWriter(_failedPreconditionsWriter);
                }
                _failedTriplesWriter.Triple(subject, subjectIsBNode, predicate, predicateIsBNode, obj, objIsBNode, isLiteral, dataType, langCode, graphUri);
                _failedTripleCount++;
            }
        }