Я новичок в dotNetRDF, и у меня есть проблема, может быть, пространства имен или рамки.
Хотя я добавляю пространства имен в свой проект, следующий код не работает.
Системе выдана ошибка, что пространство имен не найдено.
HasPropertyValueSelector sel = new HasPropertyValueSelector(rdfType, carnivore);
Все коды указаны ниже;
using System;
using System.Collections.Generic;
using VDS.RDF;
using VDS.RDF.Parsing;
using VDS.RDF.Query;
static void Main(string[] args)
{
Graph g = new Graph();
UriLoader.Load(g, new Uri("http://example.org/animals"));
IUriNode rdfType = g.CreateUriNode("rdf:type");
IUriNode carnivore = g.CreateUriNode("ex:Carnivore");
***HasPropertyValueSelector sel = new HasPropertyValueSelector(rdfType, carnivore);***
IEnumerable<Triple> carnivores = g.GetTriples(sel);
Graph ourlist = new Graph();
ourlist.NamespaceMap.AddNamespace("ex", new Uri("http://example.org/"));
IUriNode rdfType2 = ourlist.CreateUriNode("rdf:type");
IUriNode animal = ourlist.CreateUriNode("ex:Animal");
foreach (Triple t in carnivores)
{
ourlist.Assert(new Triple(Tools.CopyNode(t.Subject, ourlist), rdfType2, animal));
}
}
}
}