Method to execute a SPARQL query against the underlying store and bind its results to instances of a class

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

Syntax

C#
public abstract IEnumerable<T> ExecuteQuery<T>(
	SparqlLinqQueryContext sparqlLinqQueryContext
)
Visual Basic
Public MustOverride Function ExecuteQuery(Of T) ( 
	sparqlLinqQueryContext As SparqlLinqQueryContext
) As IEnumerable(Of T)
Visual C++
public:
generic<typename T>
virtual IEnumerable<T>^ ExecuteQuery(
	SparqlLinqQueryContext^ sparqlLinqQueryContext
) abstract
F#
abstract ExecuteQuery : 
        sparqlLinqQueryContext : SparqlLinqQueryContext -> IEnumerable<'T> 

Parameters

sparqlLinqQueryContext
Type: BrightstarDB.EntityFramework.Query..::..SparqlLinqQueryContext
The context object that specifies the SPARQL query and constructor and member mappings

Type Parameters

T
The type that the SPARQL query results are to be bound to

Return Value

Type: IEnumerable<(Of <(<'T>)>)>
An enumeration over the bound result objects

See Also