Provides access to query filter definition properties.
Description
The IQueryFilterDefinition interface is used to define the set of FilterDef objects that are applied to the query. This set of objects is represented by the FilterDefs property. The other property on this interface PostfixClause is a string property that allows for addition text to be appended to the SQL generated by a query filter.
Members
Name | Description | |
---|---|---|
FilterDefs | The filter definitions specified for this query filter. | |
PostfixClause | A clause that will be appended to the SELECT statement, following the where clause. Most commonly used for clauses like ORDER BY. |
IQueryFilterDefinition.FilterDefs Property
The filter definitions specified for this query filter.
Public Property FilterDefs As IFilterDefs
public IFilterDefs FilterDefs {get; set;}
Remarks
The FilterDefs property contains the set of FilterDefs objects that will be applied to the query.
IQueryFilterDefinition.PostfixClause Property
A clause that will be appended to the SELECT statement, following the where clause. Most commonly used for clauses like ORDER BY.
Public Property PostfixClause As String
public string PostfixClause {get; set;}
Remarks
The PostfixClause property allows for a postfix clause to be added to a query filter. The PostfixClause property is a string property. It can be used to specify an ORDER BY clause for the query. Historically, this clause has not been supported due to issues with placement in the SQL generated for spatial and/or versioned queries. This property ensures proper placement of the clause in the SQL generated by the system.
Classes that implement IQueryFilterDefinition
Classes | Description |
---|---|
ImageQueryFilter (esriCarto) | An image query filter. |
QueryFilter | Esri Query Filter object. |
SpatialFilter | Esri Spatial Filter object. |