freebase Questions - Semantic Overflow most recent 30 from http://www.semanticoverflow.com 2010-07-31T07:55:41Z http://www.semanticoverflow.com/feeds/tag/freebase http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://www.semanticoverflow.com/questions/158/using-dotnetrdf-to-read-freebase Using dotNetRDF to read Freebase Jim 2009-11-05T08:26:33Z 2010-02-04T16:18:51Z <p>Hi, </p> <p>I am using the dotNetRDF library (www.dotnetrdf.org) and attempting to read a Freebase RDF Page. I am a newcomer to RDF so any help is appreciated from people who have tried to access Freebase RDF data.</p> <p>I am setting the Base Graph URI:</p> <pre><code>Graph g = new Graph (); URILoader.Load(g, new Uri("http://rdf.freebase.com/ns/en.roman_abramovich")); </code></pre> <p>And now I am a little stuck.</p> <p>Follwoing the documentation, I can now loop through the triples:</p> <pre><code>//Loop through Triples foreach (Triple t in g.Triples) { Console.WriteLine(t.Subject.ToString()); } </code></pre> <p>But it is not obvious how I map data. For example: From the results, fetch the "Date of Birth" for Roman Abramovich.</p> <p>Any guidance for a beginner would be appreciated.</p>