If we want to get the latest created record from an entity we can get it using the FetchXML query order.
<fetch top="50">
<entity name="systemuser">
<order attribute="createdon" descending="true" />
</entity>
</fetch>
Work smarter, not harder.
If we want to get the latest created record from an entity we can get it using the FetchXML query order.
<fetch top="50">
<entity name="systemuser">
<order attribute="createdon" descending="true" />
</entity>
</fetch>
Comments
Post a Comment