Show / Hide Table of Contents

Class BaseAggregate

Abstract Base Class for Aggregate Functions.

Inheritance
System.Object
BaseAggregate
AllAggregate
AnyAggregate
MedianAggregate
ModeAggregate
NoneAggregate
NumericMaxAggregate
NumericMinAggregate
AverageAggregate
CountAggregate
CountAllAggregate
CountAllDistinctAggregate
CountDistinctAggregate
MaxAggregate
MinAggregate
SampleAggregate
SumAggregate
StringJoinAggregate
Implements
ISparqlAggregate
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Query.Aggregates
Assembly: dotNetRdf.dll
Syntax
public abstract class BaseAggregate : ISparqlAggregate

Constructors

| Improve this Doc View Source

BaseAggregate(ISparqlExpression, bool)

Base Constructor for Aggregates.

Declaration
public BaseAggregate(ISparqlExpression expr, bool distinct)
Parameters
Type Name Description
ISparqlExpression expr

Expression that the aggregate is over.

System.Boolean distinct

Whether a Distinct modifer is applied.

| Improve this Doc View Source

BaseAggregate(ISparqlExpression)

Base Constructor for Aggregates.

Declaration
public BaseAggregate(ISparqlExpression expr)
Parameters
Type Name Description
ISparqlExpression expr

Expression that the aggregate is over.

Fields

| Improve this Doc View Source

_distinct

Whether a DISTINCT modifer is applied.

Declaration
protected bool _distinct
Field Value
Type Description
System.Boolean
| Improve this Doc View Source

_expr

Expression that the aggregate operates over.

Declaration
protected ISparqlExpression _expr
Field Value
Type Description
ISparqlExpression

Properties

| Improve this Doc View Source

Arguments

Gets the Arguments of the Expression.

Declaration
public virtual IEnumerable<ISparqlExpression> Arguments { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T><ISparqlExpression>
| Improve this Doc View Source

Distinct

Get whether the aggregate should apply only to distinct values.

Declaration
public bool Distinct { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Expression

Expression that the Aggregate executes over.

Declaration
public ISparqlExpression Expression { get; }
Property Value
Type Description
ISparqlExpression
| Improve this Doc View Source

Functor

Gets the Functor of the Aggregate.

Declaration
public abstract string Functor { get; }
Property Value
Type Description
string
| Improve this Doc View Source

Type

Gets the Type of the Expression.

Declaration
public SparqlExpressionType Type { get; }
Property Value
Type Description
SparqlExpressionType

Methods

| Improve this Doc View Source

Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)

Declaration
public abstract TResult Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding> processor, TContext context, IEnumerable<TBinding> bindings)
Parameters
Type Name Description
ISparqlAggregateProcessor<TResult, TContext, TBinding> processor
TContext context
System.Collections.Generic.IEnumerable<T><TBinding> bindings
Returns
Type Description
TResult
Type Parameters
Name Description
TResult
TContext
TBinding
| Improve this Doc View Source

ToString()

Gets the String representation of the Aggregate.

Declaration
public override abstract string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Implements

ISparqlAggregate

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • BaseAggregate(ISparqlExpression, bool)
    • BaseAggregate(ISparqlExpression)
  • Fields
    • _distinct
    • _expr
  • Properties
    • Arguments
    • Distinct
    • Expression
    • Functor
    • Type
  • Methods
    • Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)
    • ToString()
  • Implements
  • Extension Methods
Back to top Generated by DocFX