Interface ISparqlGroupBy
Interface for Classes that represent SPARQL GROUP BY clauses.
Namespace: VDS.RDF.Query.Grouping
Assembly: dotNetRdf.dll
Syntax
public interface ISparqlGroupBy
  Properties
| Edit this page View SourceAssignVariable
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 | 
|---|---|
| string | 
Child
Gets/Sets the child GROUP BY Clause.
Declaration
ISparqlGroupBy Child { get; set; }
  Property Value
| Type | Description | 
|---|---|
| ISparqlGroupBy | 
Expression
Gets the Expression used to GROUP BY.
Declaration
ISparqlExpression Expression { get; }
  Property Value
| Type | Description | 
|---|---|
| ISparqlExpression | 
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 | 
|---|---|
| IEnumerable<string> | 
Variables
Gets the Variables used in the GROUP BY.
Declaration
IEnumerable<string> Variables { get; }
  Property Value
| Type | Description | 
|---|---|
| IEnumerable<string> |