-
Notifications
You must be signed in to change notification settings - Fork 24
MobileCRM.FetchXml.Entity
rescocrm edited this page Jun 3, 2024
·
4 revisions
Represents a FetchXml query root entity.
| Property | Type | Description |
|---|---|---|
| allattributes | Boolean | Indicates whether to fetch all attributes instead of explicitly chosen set. |
| attributes | Array | An array of MobileCRM.FetchXml.Attribute objects. |
| filter | MobileCRM.FetchXml.Filter | A query filter. |
| linkentities | Array | An array of MobileCRM.FetchXml.LinkEntity objects. |
| name | String | An entity logical name. |
| order | Array | An array of MobileCRM.FetchXml.Order objects. |
| Method | Description |
|---|---|
| constructor | Constructs an instance of MobileCRM.FetchXml.Entity object. |
| addAttribute | Adds an entity attribute to the fetch query. |
| addAttributes | Adds all entity attributes to the fetch query. |
| addFilter | Adds a filter for this fetch entity. |
| addLink | Adds an entity link (join) to the fetch query. |
| orderBy | Adds an order by statement to the fetch query. |
| removeLink | Removes an entity link from the fetch query. |