[]
Represents a C1DataEngine query.
[DataContract]
public class RuntimeQuery
| Name | Description |
|---|---|
| RuntimeQuery() |
| Name | Description |
|---|---|
| columns | An array of column names (need not be fully qualified if there is only one table). |
| joins | An optional array of join conditions |
| name | The name of the query. |
| range | An optional array of range conditions |
| tables | An array of table names (join queries require two or more). |
| Name | Description |
|---|---|
| isFilter() | Returns a value that indicates whether the query has one or more range conditions AND at least one of them must be evaluated as a filter. |
| isRange() | Returns a value that indicates whether the query has one or more range conditions AND all of them may be evaluated as a range. |
| requiresParent() | Returns a value that indicates whether the query uses a DateTime operator or other construct that requires derivation from a parent query. |