Click or drag to resize

BaseStardogConnectorSaveGraph Method (IGraph)

Saves a Graph into the Store (see remarks for notes on merge/overwrite behaviour).

Namespace:  VDS.RDF.Storage
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public virtual void SaveGraph(
	IGraph g
)

Parameters

g
Type: VDS.RDFIGraph
Graph to save.

Implements

IStorageProviderSaveGraph(IGraph)
Remarks

If the Graph has no URI then the contents will be appended to the Store's Default Graph. If the Graph has a URI then existing Graph associated with that URI will be replaced. To append to a named Graph use the UpdateGraph() method instead.

See Also