From: Tavi T. <tav...@it...> - 2014-06-10 10:14:24
|
Hello Rob and thanks for getting back to me, I know you are very busy. Yes, I figured that out that I needed to create the RDF context. We have a very large project on going where we are using the dotnetrdf api to produce RDF/RDFS and OWL productions and we store them in BrightStarDB. Great work and its very much apperciated. Tavi Tavi Thurmond Sr. .NET Architect/Engineer ITSourceTek 408-398-9143 On Tue, Jun 10, 2014 at 2:45 AM, Rob Vesse <rv...@do...> wrote: > 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 > > |