Provides access to members that control attribute based queries.
Members
Name | Description | |
---|---|---|
Evaluate | Evaluate the query and return a cursor on the result set. | |
Evaluate2 | Evaluate the query and return a cursor on the result set. | |
PostfixClause | A clause that will be appended to the SELECT statement, following the where clause. Most commonly used for clauses like ORDER BY. | |
PrefixClause | A clause that will be inserted between the SELECT keyword and the SELECT COLUMN LIST. Most commonly used for clauses like DISTINCT or ALL. | |
SubFields | The comma delimited list of field names for the query. | |
Tables | The comma delimited list of table names for the query. | |
WhereClause | The where clause for the query. |
IQueryDef2.Evaluate2 Method
Evaluate the query and return a cursor on the result set.
Public Function Evaluate2 ( _
ByVal Recycling As Boolean _
) As ICursor
public ICursor Evaluate2 (
bool Recycling
);
IQueryDef2.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;}
IQueryDef2.PrefixClause Property
A clause that will be inserted between the SELECT keyword and the SELECT COLUMN LIST. Most commonly used for clauses like DISTINCT or ALL.
Public Property PrefixClause As String
public string PrefixClause {get; set;}
Inherited Interfaces
Interfaces | Description |
---|---|
IQueryDef | Provides access to members that control attribute based queries. |
Classes that implement IQueryDef2
Classes | Description |
---|