Show / Hide Table of Contents

Class GroupConcatAggregate

Class representing GROUP_CONCAT Aggregate.

Inheritance
System.Object
BaseAggregate
StringJoinAggregate
GroupConcatAggregate
Implements
ISparqlAggregate
Inherited Members
StringJoinAggregate._sep
StringJoinAggregate.SeparatorExpression
BaseAggregate._expr
BaseAggregate._distinct
BaseAggregate.Expression
BaseAggregate.Distinct
BaseAggregate.Type
BaseAggregate.Arguments
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 GroupConcatAggregate : StringJoinAggregate, ISparqlAggregate

Constructors

| Improve this Doc View Source

GroupConcatAggregate(ISparqlExpression, bool)

Creates a new GROUP_CONCAT aggregate.

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

Expression.

System.Boolean distinct

Should a distinct modifer be applied.

| Improve this Doc View Source

GroupConcatAggregate(ISparqlExpression, ISparqlExpression, bool)

Creates a new GROUP_CONCAT aggregate.

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

Expression.

ISparqlExpression sepExpr

Separator Expression.

System.Boolean distinct

Should a distinct modifer be applied.

| Improve this Doc View Source

GroupConcatAggregate(ISparqlExpression, ISparqlExpression)

Creates a new GROUP_CONCAT aggregate.

Declaration
public GroupConcatAggregate(ISparqlExpression expr, ISparqlExpression sepExpr)
Parameters
Type Name Description
ISparqlExpression expr

Expression.

ISparqlExpression sepExpr

Separator Expression.

| Improve this Doc View Source

GroupConcatAggregate(ISparqlExpression)

Creates a new GROUP_CONCAT aggregate.

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

Expression.

Properties

| Improve this Doc View Source

Functor

Gets the Functor of the Aggregate.

Declaration
public override string Functor { get; }
Property Value
Type Description
string
Overrides
StringJoinAggregate.Functor

Methods

| Improve this Doc View Source

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

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
TContext context
System.Collections.Generic.IEnumerable<T><TBinding> bindings
Returns
Type Description
TResult
Type Parameters
Name Description
TResult
TContext
TBinding
Overrides
VDS.RDF.Query.Aggregates.XPath.StringJoinAggregate.Accept<TResult, TContext, TBinding>(VDS.RDF.Query.ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, System.Collections.Generic.IEnumerable<TBinding>)
| Improve this Doc View Source

ToString()

Gets the String representation of the Aggregate.

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

Implements

ISparqlAggregate

Extension Methods

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