Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
73 views

dotNetRDF VS Jena.NEt VS others with Dotnet ?

what is the most common tool used for Reading & Writing RDF and Querying with Sparql with different end points . so far i've found Jena (jena.net) : it's developed for Java but some people ...
1
vote
0answers
40 views

how can i save my n3 file formate like it's origin file

i programing with c# and dotnetrdflibrery'I have an n3 file that i open it in a notpad and show it below @prefix my: <http://www.codeproject.com/KB/recipes/n3_notation#>. my:Peter a my:person, ...
0
votes
0answers
2 views

Setting the connection timeout in virtuoso server via connection string

I started the virtuoso service on windows with the following configurations (this is the important part of the config file): ResultSetMaxRows = 10000 MaxQueryCostEstimationTime = 40000 ; ...
0
votes
0answers
9 views

overriding dotNetRDF.Data.Virtuoso timeout property

is there's a way to override the default 30 seconds timeout in dotNETRDF.Data.Virtuoso library?? I've set the timeouts in virtuoso.ini configuration file for my virtuoso local server to be much ...
0
votes
0answers
19 views

What code of library i should use in dotnetdf library to make a method to understand one graph is a tree? [closed]

I want to insert some code to dotnetrdf library to understand that a graph is a tree. Where should I insert the code to acheive better API?
0
votes
1answer
84 views

How can I get blankNode ID in dotnetrdf librery in C#

I create a blankNode like this code using dotNetRDF BlankNode ddd = k.CreateBlankNode(); and then assert it in a n3 file but when I open the n3 file by notpad it show this blankNode like []. How ...
-1
votes
1answer
60 views

How can I use GraphVizWriter in dotNetRDF library?

I want to know what syntax should I write to use GraphVizWriter to show my graph in a png format ? I use dotNetRDF library. private void button1_Click(object sender, EventArgs e) { ...