Show / Hide Table of Contents

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 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
string
| Edit this page View Source

Child

Gets/Sets the child GROUP BY Clause.

Declaration
ISparqlGroupBy Child { get; set; }
Property Value
Type Description
ISparqlGroupBy
| Edit this page View Source

Expression

Gets the Expression used to GROUP BY.

Declaration
ISparqlExpression Expression { get; }
Property Value
Type Description
ISparqlExpression
| Edit this page 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
IEnumerable<string>
| Edit this page View Source

Variables

Gets the Variables used in the GROUP BY.

Declaration
IEnumerable<string> Variables { get; }
Property Value
Type Description
IEnumerable<string>

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Properties
    • AssignVariable
    • Child
    • Expression
    • ProjectableVariables
    • Variables
  • Extension Methods
Back to top Generated by DocFX