I have two Dataverse Table with 1:N Relationship
- Knowledge Assessment
- Knowledge Questions
Knowledge Assessment is having 1:N Relationship with Knowledge Question!
Whenever, Item is updated to Knowledge Assesment I need to retrieve all the records from Knowledge Questions
I am using Power Automate - "List Rows" action
Now to filter the record from Another table - Should I use Filter Rows with Expand Query???
Or
Use FetchXML Query??
Which is more performant? OData Vs FetchXML?
Solved! Go to Solution.
Hi @Dhruvin ,
It completely depends upon number of records you are wanting to pull from CRM. If you are pulling few 100 records both are fine. But if you are pulling over 5000 records Odata because with pagination it pulls are records whereas for Fetch we need to do more work.
Thanks
Hi @Dhruvin ,
It completely depends upon number of records you are wanting to pull from CRM. If you are pulling few 100 records both are fine. But if you are pulling over 5000 records Odata because with pagination it pulls are records whereas for Fetch we need to do more work.
Thanks
@ManishJain I have one more quick thing to ask!
Is it something - FetchXML query take some time to reflect our actual data in the resultset! I came across with the scenarion - where I added new column in my dataverse table and updated FetchXML query as well. Still it is not populating that column in resultset.
Also, sometimes new rows are added and try to retrieve it using FetchXML. But still new record is not available in Resultset. But after sometime same query is returning the result!
Hi @Dhruvin ,
It completely depends upon synchronization within CDS and if you have data available for that column.
Thanks