Class BaseGroupBy
Abstract Base Class for classes representing Sparql GROUP BY clauses.
Implements
Inherited Members
Namespace: VDS.RDF.Query.Grouping
Assembly: dotNetRdf.dll
Syntax
public abstract class BaseGroupBy : ISparqlGroupBy
Fields
| Edit this page View Source_child
Child Grouping.
Declaration
protected ISparqlGroupBy _child
Field Value
Type | Description |
---|---|
ISparqlGroupBy |
Properties
| Edit this page View SourceAssignVariable
Gets/Sets the Variable that the grouped upon value should be assigned to.
Declaration
public string AssignVariable { get; set; }
Property Value
Type | Description |
---|---|
string |
Child
Gets/Sets the Child GROUP BY Clause.
Declaration
public ISparqlGroupBy Child { get; set; }
Property Value
Type | Description |
---|---|
ISparqlGroupBy |
Expression
Gets the Expression used to GROUP BY.
Declaration
public abstract 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
public abstract IEnumerable<string> ProjectableVariables { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Variables
Gets the Variables involved in this Group By.
Declaration
public abstract IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |