Show / Hide Table of Contents

Class CountDistinctAggregate

Class representing COUNT(DISTINCT ?x) Aggregate Function.

Inheritance
object
BaseAggregate
CountDistinctAggregate
Implements
ISparqlAggregate
Inherited Members
BaseAggregate._expr
BaseAggregate._distinct
BaseAggregate.Expression
BaseAggregate.Distinct
BaseAggregate.Type
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Query.Aggregates.Sparql
Assembly: dotNetRdf.dll
Syntax
public class CountDistinctAggregate : BaseAggregate, ISparqlAggregate

Constructors

| Edit this page View Source

CountDistinctAggregate(ISparqlExpression)

Creates a new COUNT DISTINCT Aggregate.

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

Expression.

| Edit this page View Source

CountDistinctAggregate(VariableTerm)

Creates a new COUNT(DISTINCT ?x) Aggregate.

Declaration
public CountDistinctAggregate(VariableTerm expr)
Parameters
Type Name Description
VariableTerm expr

Variable Expression.

Properties

| Edit this page View Source

Arguments

Gets the Arguments of the Aggregate.

Declaration
public override IEnumerable<ISparqlExpression> Arguments { get; }
Property Value
Type Description
IEnumerable<ISparqlExpression>
Overrides
BaseAggregate.Arguments
| Edit this page View Source

Functor

Gets the Functor of the Aggregate.

Declaration
public override string Functor { get; }
Property Value
Type Description
string
Overrides
BaseAggregate.Functor
| Edit this page View Source

Variable

The variable to aggregate.

Declaration
public string Variable { get; }
Property Value
Type Description
string

Methods

| Edit this page View Source

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

Called when the aggregate is visited during algebra processing.

Declaration
public override TResult Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding> processor, TContext context, IEnumerable<TBinding> bindings)
Parameters
Type Name Description
ISparqlAggregateProcessor<TResult, TContext, TBinding> processor

The processor that handles this algebra.

TContext context

The current context.

IEnumerable<TBinding> bindings

The current set of bindings.

Returns
Type Description
TResult

The result of the aggregate processing.

Type Parameters
Name Description
TResult

The type of result object returned by the processor.

TContext

The type of the context object to be passed to the processor.

TBinding

The type of the binding objects to be passed to the processor.

Overrides
BaseAggregate.Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)
| Edit this page View Source

ToString()

Gets the String representation of the Aggregate.

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

Implements

ISparqlAggregate

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Constructors
    • CountDistinctAggregate(ISparqlExpression)
    • CountDistinctAggregate(VariableTerm)
  • Properties
    • Arguments
    • Functor
    • Variable
  • Methods
    • Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)
    • ToString()
  • Implements
  • Extension Methods
Back to top Generated by DocFX