Show / Hide Table of Contents

Interface IAggregateBuilder

Provides methods for creating aggregates expressions.

Inherited Members
IDistinctAggregateBuilder.Sum(VariableTerm)
IDistinctAggregateBuilder.Sum(string)
IDistinctAggregateBuilder.Sum(SparqlVariable)
IDistinctAggregateBuilder.Sum(SparqlExpression)
IDistinctAggregateBuilder.Avg(VariableTerm)
IDistinctAggregateBuilder.Avg(string)
IDistinctAggregateBuilder.Avg(SparqlVariable)
IDistinctAggregateBuilder.Avg(SparqlExpression)
IDistinctAggregateBuilder.Min(VariableTerm)
IDistinctAggregateBuilder.Min(string)
IDistinctAggregateBuilder.Min(SparqlVariable)
IDistinctAggregateBuilder.Min(SparqlExpression)
IDistinctAggregateBuilder.Max(VariableTerm)
IDistinctAggregateBuilder.Max(string)
IDistinctAggregateBuilder.Max(SparqlVariable)
IDistinctAggregateBuilder.Max(SparqlExpression)
IDistinctAggregateBuilder.GroupConcat(VariableTerm, string)
IDistinctAggregateBuilder.GroupConcat(string, string)
IDistinctAggregateBuilder.GroupConcat(SparqlExpression, string)
IDistinctAggregateBuilder.Count()
IDistinctAggregateBuilder.Count(VariableTerm)
IDistinctAggregateBuilder.Count(string)
IDistinctAggregateBuilder.Count(SparqlVariable)
IDistinctAggregateBuilder.Count(SparqlExpression)
Namespace: VDS.RDF.Query.Builder
Assembly: dotNetRdf.dll
Syntax
public interface IAggregateBuilder : IDistinctAggregateBuilder

Properties

| Improve this Doc View Source

Distinct

Gets a builder which builds a DISTINCT aggregate.

Declaration
IDistinctAggregateBuilder Distinct { get; }
Property Value
Type Description
IDistinctAggregateBuilder

Methods

| Improve this Doc View Source

Sample(string)

Creates a SAMPLE aggregate.

Declaration
AggregateExpression Sample(string variable)
Parameters
Type Name Description
string variable
Returns
Type Description
AggregateExpression
| Improve this Doc View Source

Sample(SparqlExpression)

Creates a SAMPLE aggregate.

Declaration
AggregateExpression Sample(SparqlExpression expression)
Parameters
Type Name Description
SparqlExpression expression
Returns
Type Description
AggregateExpression
| Improve this Doc View Source

Sample(VariableTerm)

Creates a SAMPLE aggregate.

Declaration
AggregateExpression Sample(VariableTerm variable)
Parameters
Type Name Description
VariableTerm variable
Returns
Type Description
AggregateExpression

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Properties
    • Distinct
  • Methods
    • Sample(string)
    • Sample(SparqlExpression)
    • Sample(VariableTerm)
  • Extension Methods
Back to top Generated by DocFX