-
Notifications
You must be signed in to change notification settings - Fork 24
MobileCRM.FetchXml.Filter
Maros Kolibas edited this page Nov 29, 2019
·
2 revisions
Represents a FetchXml filter statement. A logical combination of Conditions and child-filters.
| Property | Type | Description |
|---|---|---|
| conditions | Array | An array of Condition objects. |
| filters | Array | An array of Filter objects representing child-filters. |
| type | String | Defines the filter operator ("or" / "and"). |
| Method | Description |
|---|---|
| between | Adds a condition that the passed attribute is between the passed bounds. |
| contains | Adds a condition that the passed column starts with the passed string. |
| isIn | Adds a attribute inclusion condition to the filter. |
| notIn | Adds a attribute inclusion condition to the filter. |
| startsWith | Adds a condition that the passed column value contains the passed string. |
| where | Adds a attribute condition to the filter. |