Gets an enumeration of dynamic objects, where each is bound to the data attached to each result in the provided SPARQL query.

Namespace: BrightstarDB.Dynamic
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public IEnumerable<Object> BindObjectsWithSparql(
	string sparqlExpression
)
Visual Basic
Public Function BindObjectsWithSparql ( 
	sparqlExpression As String
) As IEnumerable(Of Object)
Visual C++
public:
IEnumerable<Object^>^ BindObjectsWithSparql(
	String^ sparqlExpression
)
F#
member BindObjectsWithSparql : 
        sparqlExpression : string -> IEnumerable<Object> 

Parameters

sparqlExpression
Type: System..::..String
The sparql query that indentifies the objects to return.

Return Value

Type: IEnumerable<(Of <(<'Object>)>)>
A collection of dynamic objects bound to the SPARQL result.

See Also