freebase Questions - Semantic Overflowmost recent 30 from http://www.semanticoverflow.com2010-07-31T07:55:41Zhttp://www.semanticoverflow.com/feeds/tag/freebasehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://www.semanticoverflow.com/questions/158/using-dotnetrdf-to-read-freebaseUsing dotNetRDF to read FreebaseJim2009-11-05T08:26:33Z2010-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>