BaseGraph.Merge Method (IGraph) |
Merges another Graph into the current Graph.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic virtual void Merge(
IGraph g
)
Public Overridable Sub Merge (
g As IGraph
)
Parameters
- g
- Type: VDS.RDF.IGraph
Graph to Merge into this Graph.
Implements
IGraph.Merge(IGraph)
RemarksThe Graph on which you invoke this method will preserve its Blank Node IDs while the Blank Nodes from the Graph being merged in will be given new IDs as required in the scope of this Graph.
See Also