Interface IDistinctAggregateBuilder
Provides methods for creating aggregates expressions but only those allowing DISTINCT.
Assembly: dotNetRdf.dll
Syntax
public interface IDistinctAggregateBuilder
Methods
|
Improve this Doc
View Source
Avg(string)
Declaration
AggregateExpression Avg(string variable)
Parameters
Type |
Name |
Description |
string |
variable |
|
Returns
|
Improve this Doc
View Source
Avg(SparqlExpression)
Declaration
AggregateExpression Avg(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Avg(VariableTerm)
Declaration
AggregateExpression Avg(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Avg(SparqlVariable)
Declaration
AggregateExpression Avg(SparqlVariable variable)
Parameters
Returns
|
Improve this Doc
View Source
Count()
Creates a COUNT(*) aggregate.
Declaration
AggregateExpression Count()
Returns
|
Improve this Doc
View Source
Count(string)
Creates a COUNT aggregate.
Declaration
AggregateExpression Count(string variable)
Parameters
Type |
Name |
Description |
string |
variable |
|
Returns
|
Improve this Doc
View Source
Count(SparqlExpression)
Creates a COUNT aggregate.
Declaration
AggregateExpression Count(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Count(VariableTerm)
Creates a COUNT aggregate.
Declaration
AggregateExpression Count(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Count(SparqlVariable)
Creates a COUNT aggregate.
Declaration
AggregateExpression Count(SparqlVariable variable)
Parameters
Returns
|
Improve this Doc
View Source
GroupConcat(string, string)
Creates a GROUP_CONCAT aggregate.
Declaration
AggregateExpression GroupConcat(string variable, string separator = " ")
Parameters
Type |
Name |
Description |
string |
variable |
|
string |
separator |
|
Returns
|
Improve this Doc
View Source
GroupConcat(SparqlExpression, string)
Creates a GROUP_CONCAT aggregate.
Declaration
AggregateExpression GroupConcat(SparqlExpression expression, string separator = " ")
Parameters
Returns
|
Improve this Doc
View Source
GroupConcat(VariableTerm, string)
Creates a GROUP_CONCAT aggregate.
Declaration
AggregateExpression GroupConcat(VariableTerm variable, string separator = " ")
Parameters
Type |
Name |
Description |
VariableTerm |
variable |
|
string |
separator |
|
Returns
|
Improve this Doc
View Source
Max(string)
Declaration
AggregateExpression Max(string variable)
Parameters
Type |
Name |
Description |
string |
variable |
|
Returns
|
Improve this Doc
View Source
Max(SparqlExpression)
Declaration
AggregateExpression Max(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Max(VariableTerm)
Declaration
AggregateExpression Max(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Max(SparqlVariable)
Declaration
AggregateExpression Max(SparqlVariable variable)
Parameters
Returns
|
Improve this Doc
View Source
Min(string)
Declaration
AggregateExpression Min(string variable)
Parameters
Type |
Name |
Description |
string |
variable |
|
Returns
|
Improve this Doc
View Source
Min(SparqlExpression)
Declaration
AggregateExpression Min(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Min(VariableTerm)
Declaration
AggregateExpression Min(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Min(SparqlVariable)
Declaration
AggregateExpression Min(SparqlVariable variable)
Parameters
Returns
|
Improve this Doc
View Source
Sum(string)
Declaration
AggregateExpression Sum(string variable)
Parameters
Type |
Name |
Description |
string |
variable |
|
Returns
|
Improve this Doc
View Source
Sum(SparqlExpression)
Declaration
AggregateExpression Sum(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Sum(VariableTerm)
Declaration
AggregateExpression Sum(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Sum(SparqlVariable)
Declaration
AggregateExpression Sum(SparqlVariable variable)
Parameters
Returns
Extension Methods