Class BaseGroupBy
Abstract Base Class for classes representing Sparql GROUP BY clauses.
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF.Query.Grouping
Assembly: dotNetRdf.dll
Syntax
public abstract class BaseGroupBy : ISparqlGroupBy
Fields
| Improve this Doc View Source_child
Child Grouping.
Declaration
protected ISparqlGroupBy _child
Field Value
Type | Description |
---|---|
ISparqlGroupBy |
Properties
| Improve this Doc 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 |
---|---|
System.Collections.Generic.IEnumerable<T><string> |
Variables
Gets the Variables involved in this Group By.
Declaration
public abstract IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><string> |