Skip to content
Snippets Groups Projects
Commit fd412533 authored by Hanna Führ's avatar Hanna Führ
Browse files

Update: fixes

parent 4595a6a6
No related branches found
No related tags found
1 merge request!9New: Migrate resource structured data to linked data
Pipeline #776944 skipped
......@@ -66,7 +66,6 @@ namespace SQL2Linked
)
);
}
public void AssertToGraphLiteralNode(IGraph graph, string graphSubject, string graphPredicate, string graphObject, Uri? objectType = null)
{
graph.Assert(
......@@ -78,17 +77,6 @@ namespace SQL2Linked
);
}
public void AssertToGraphBlankAndUriNode(IGraph graph, string graphSubject, string graphPredicate, string graphObject)
{
graph.Assert(
new Triple(
graph.CreateBlankNode(graphSubject),
graph.CreateUriNode(new Uri(graphPredicate)),
graph.CreateUriNode(new Uri(graphObject))
)
);
}
public void AssertToGraphBlankAndUriNode(IGraph graph, IBlankNode graphSubject, string graphPredicate, string graphObject)
{
graph.Assert(
......@@ -99,6 +87,5 @@ namespace SQL2Linked
)
);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment