all-attributes element
Indicates that all non-null column values for each row are returned. It is the same as not adding any attribute elements. We don't recommend using this element for most cases.
Important
We strongly discourage returning all columns in a table. Returning all columns will make your applications run slower and may cause timeout errors. You should always use attribute elements to specify which columns you want to return. More information: Select columns using FetchXml
Example
<entity name="account">
<all-attributes/>
</entity>
Parent elements
Name | Description |
---|---|
entity | Specifies the child element for a fetch element, the 'parent entity' for the query. Only one entity is allowed. |
link-entity | Joins a table related to the entity or link-entity to return additional columns with the result. Also used with filter elements to apply conditions on column values in related tables. |