3

Is there a way to parse RDF using .NET? I would like to show the data in some web control?

Thanks

Charles
  • 50,943
  • 13
  • 104
  • 142
vikifor
  • 455
  • 1
  • 5
  • 17
  • 4
    Yes, there is a way. Look for an RDF library for .NET and use it. In the future, when asking a question, please explain what you have tried and where you are stuck. – Oded Feb 07 '12 at 20:37
  • Related Questions - http://stackoverflow.com/questions/240903/what-is-a-good-rdf-library-for-net and http://stackoverflow.com/questions/4356839/how-do-i-get-started-with-sparql-as-a-net-developer – RobV Feb 08 '12 at 05:38
  • Also duplicated at http://answers.semanticweb.com/questions/14352/how-to-show-data-from-rdf-in-web-controls – RobV Feb 08 '12 at 05:41
  • 1
    I agree with @Oded - this is far too vague as a question and a simple Google search would have given you too good APIs - including my own ;-) - in the top three search results and a link to a SO question covering RDF libraries for .Net – RobV Feb 08 '12 at 05:44
  • Check http://codecanyon.net/item/feed-reader-for-rssatom-and-rdf-using-aspnet/16181586 . Very easy integration and supports multiple Feeds like RSS,RDF and ATOM. It is a paid solution but a worth try. – sambit.albus May 17 '16 at 14:33

1 Answers1

1

Yes, there is. For instance with:

In dotNetRdf several classes (for example IGraph.ToDataTable()) offer methods which will convert the RDF triples to a DataTable.

Konrad Reiche
  • 27,743
  • 15
  • 106
  • 143