how can i query to CRM Dynamics for top 50 records like top in sqlserver.
thanks,
how can i query to CRM Dynamics for top 50 records like top in sqlserver.
thanks,
You can use fetch xml something like below:
<fetch top="50" >
<entity name="contact" >
<attribute name="contactid" />
<attribute name="fullname" />
</entity>
</fetch>