SparqlQueryEvaluate Method (IInMemoryQueryableStore) |
Note: This API is now obsolete.
Evaluates the SPARQL Query against the given Triple Store.
Namespace:
VDS.RDF.Query
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax [ObsoleteAttribute("This method is considered obsolete, you should create an ISparqlQueryProcessor instance and invoke the ProcessQuery() method instead",
true)]
public Object Evaluate(
IInMemoryQueryableStore data
)
<ObsoleteAttribute("This method is considered obsolete, you should create an ISparqlQueryProcessor instance and invoke the ProcessQuery() method instead",
true)>
Public Function Evaluate (
data As IInMemoryQueryableStore
) As Object
Parameters
- data
- Type: VDS.RDFIInMemoryQueryableStore
Triple Store.
Return Value
Type:
Object
Either a
SparqlResultSet or a
Graph depending on the type of query executed.
See Also