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)
Creates a AVG aggregate.
Declaration
AggregateExpression Avg(string variable)
Parameters
Type |
Name |
Description |
System.String |
variable |
|
Returns
|
Improve this Doc
View Source
Avg(SparqlExpression)
Creates a AVG aggregate.
Declaration
AggregateExpression Avg(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Avg(VariableTerm)
Creates a AVG aggregate.
Declaration
AggregateExpression Avg(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Avg(SparqlVariable)
Creates a AVG aggregate.
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 |
System.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 |
System.String |
variable |
|
System.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 |
|
System.String |
separator |
|
Returns
|
Improve this Doc
View Source
Max(String)
Creates a MAX aggregate.
Declaration
AggregateExpression Max(string variable)
Parameters
Type |
Name |
Description |
System.String |
variable |
|
Returns
|
Improve this Doc
View Source
Max(SparqlExpression)
Creates a MAX aggregate.
Declaration
AggregateExpression Max(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Max(VariableTerm)
Creates a MAX aggregate.
Declaration
AggregateExpression Max(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Max(SparqlVariable)
Creates a MAX aggregate.
Declaration
AggregateExpression Max(SparqlVariable variable)
Parameters
Returns
|
Improve this Doc
View Source
Min(String)
Creates a MIN aggregate.
Declaration
AggregateExpression Min(string variable)
Parameters
Type |
Name |
Description |
System.String |
variable |
|
Returns
|
Improve this Doc
View Source
Min(SparqlExpression)
Creates a MIN aggregate.
Declaration
AggregateExpression Min(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Min(VariableTerm)
Creates a MIN aggregate.
Declaration
AggregateExpression Min(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Min(SparqlVariable)
Creates a MIN aggregate.
Declaration
AggregateExpression Min(SparqlVariable variable)
Parameters
Returns
|
Improve this Doc
View Source
Sum(String)
Creates a SUM aggregate.
Declaration
AggregateExpression Sum(string variable)
Parameters
Type |
Name |
Description |
System.String |
variable |
|
Returns
|
Improve this Doc
View Source
Sum(SparqlExpression)
Creates a SUM aggregate.
Declaration
AggregateExpression Sum(SparqlExpression expression)
Parameters
Returns
|
Improve this Doc
View Source
Sum(VariableTerm)
Creates a SUM aggregate.
Declaration
AggregateExpression Sum(VariableTerm variable)
Parameters
Returns
|
Improve this Doc
View Source
Sum(SparqlVariable)
Creates a SUM aggregate.
Declaration
AggregateExpression Sum(SparqlVariable variable)
Parameters
Returns
Extension Methods