From: Rob V. <rv...@do...> - 2014-06-10 09:46:46
|
Tavi A reified statement is just a set of triples expressed using the appropriate RDF terms. So given a graph like so in Turtle format: @prefix : <http://example.org> . :s :p :o . The reified form is just the following graph: @prefix : <http://example.org> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . [] a rdf:Statement ; rdf:subject :s ; rdf:predicate :p ; rdf:object :o . In terms of the API there is no specific support for reification you just need to assert the appropriate triples into your graph. Rob From: Tavi Thurmond <tav...@it...> Reply-To: dotNetRDF User Help and Support <dot...@li...> Date: Wednesday, 4 June 2014 03:30 To: <dot...@li...> Subject: [dotNetRDF-Support] How to create Reified Statements? > Hello all - can someone provide an example of how to use the API to generate > Reified Statements? > > Thanks! > > Tavi Truman > Sr. .NET Architect/Engineer > ITSourceTek > 408-398-9143 > ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the > definitive new guide to graph databases and their applications. Written by > three acclaimed leaders in the field, this first edition is now available. > Download your free book today! > http://p.sf.net/sfu/NeoTech_______________________________________________ > dotNetRDF-Support mailing list dot...@li... > https://lists.sourceforge.net/lists/listinfo/dotnetrdf-support |