Click or drag to resize

BaseStardogConnectorUpdateGraph Method (Uri, IEnumerableTriple, IEnumerableTriple)

Updates a Graph in the Stardog Store.

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public virtual void UpdateGraph(
	Uri graphUri,
	IEnumerable<Triple> additions,
	IEnumerable<Triple> removals
)

Parameters

graphUri
Type: SystemUri
Uri of the Graph to update.
additions
Type: System.Collections.GenericIEnumerableTriple
Triples to be added.
removals
Type: System.Collections.GenericIEnumerableTriple
Triples to be removed.

Implements

IStorageProviderUpdateGraph(Uri, IEnumerableTriple, IEnumerableTriple)
Remarks
Removals happen before additions.
See Also