Interface ISparqlGroupBy
Interface for Classes that represent SPARQL GROUP BY clauses.
Assembly: dotNetRDF.dll
Syntax
public interface ISparqlGroupBy
Properties
|
Improve this Doc
View Source
AssignVariable
Gets/Sets the Variable the value of the GROUP BY expression should be bound to (may be null if not bound to anything).
Declaration
string AssignVariable { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Child
Gets/Sets the child GROUP BY Clause.
Declaration
ISparqlGroupBy Child { get; set; }
Property Value
|
Improve this Doc
View Source
Expression
Gets the Expression used to GROUP BY.
Declaration
ISparqlExpression Expression { get; }
Property Value
|
Improve this Doc
View Source
ProjectableVariables
Gets the Projectable Variables used in the GROUP BY i.e. Variables that are grouped upon and Assigned Variables.
Declaration
IEnumerable<string> ProjectableVariables { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<System.String> |
|
|
Improve this Doc
View Source
Variables
Gets the Variables used in the GROUP BY.
Declaration
IEnumerable<string> Variables { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<System.String> |
|
Methods
|
Improve this Doc
View Source
Apply(SparqlEvaluationContext)
Applies the Grouping to a Result Binder.
Declaration
List<BindingGroup> Apply(SparqlEvaluationContext context)
Parameters
Returns
Type |
Description |
System.Collections.Generic.List<BindingGroup> |
|
|
Improve this Doc
View Source
Apply(SparqlEvaluationContext, List<BindingGroup>)
Applies the Grouping to a Result Binder subdividing the Groups from the previous Group By clause into further Groups.
Declaration
List<BindingGroup> Apply(SparqlEvaluationContext context, List<BindingGroup> groups)
Parameters
Returns
Type |
Description |
System.Collections.Generic.List<BindingGroup> |
|
Extension Methods