ISelectBuilder Methods |
The ISelectBuilder type exposes the following members.
| Name | Description | |
|---|---|---|
| And(String[]) |
Adds additional SELECT return variables.
| |
| And(SparqlVariable[]) |
Adds additional SELECT return variables.
| |
| And<TExpression>(Func<IExpressionBuilder, PrimaryExpression<TExpression>>) |
Adds additional SELECT expression.
| |
| Bind |
Adds a BIND variable assignment to the root graph pattern.
(Inherited from IQueryBuilder.) | |
| BuildQuery |
Builds and returns a SparqlQuery.
(Inherited from IQueryBuilder.) | |
| Distinct |
Applies the DISTINCT modifier if the Query is a SELECT, otherwise leaves query unchanged (since results from any other query are DISTINCT by default).
| |
| GroupBy(String) |
Adds a GROUP BY clause to the query.
(Inherited from IQueryBuilder.) | |
| GroupBy(Func<INonAggregateExpressionBuilder, SparqlExpression>) |
Adds a GROUP BY clause to the query.
(Inherited from IQueryBuilder.) | |
| GroupBy(SparqlVariable) |
Adds a GROUP BY clause to the query.
(Inherited from IQueryBuilder.) | |
| Having |
Adds a HAVING clause to the query.
(Inherited from IQueryBuilder.) | |
| InlineDataOverQuery |
Adds a VALUES inline data block to the entire query (outside graph patterns).
(Inherited from IQueryBuilder.) | |
| Limit |
Applies a LIMIT.
(Inherited from IQueryBuilder.) | |
| Offset |
Applies an OFFSET.
(Inherited from IQueryBuilder.) | |
| OrderBy(String) |
Adds ascending ordering by a variable to the query.
(Inherited from IQueryBuilder.) | |
| OrderBy(Func<IExpressionBuilder, SparqlExpression>) |
Adds ascending ordering by an expression to the query.
(Inherited from IQueryBuilder.) | |
| OrderBy(SparqlVariable) |
Adds ascending ordering by a variable to the query.
(Inherited from IQueryBuilder.) | |
| OrderByDescending(String) |
Adds descending ordering by a variable to the query.
(Inherited from IQueryBuilder.) | |
| OrderByDescending(Func<IExpressionBuilder, SparqlExpression>) |
Adds descending ordering by an expression to the query.
(Inherited from IQueryBuilder.) | |
| OrderByDescending(SparqlVariable) |
Adds descending ordering by a variable to the query.
(Inherited from IQueryBuilder.) |