Latest posts

Notes on code and the things I build.

C# , dynamics-crm , powerplatform , tips

Dataverse: How to use RetrieveEntityChangesRequest to synchronize data with externals system

Aug 20, 2022

In Dataverse, we have lots of ways to notify the external system about the changes that happened in Dataverse individually (per row data). We have Azure Aware Plug-in, WebHooks, and we also can write a custom plugin that will call HTTP operations. But in the world of Software...

C# , dynamics-crm , tips

Dataverse: Comparing Create vs ExecuteMultipleRequest vs Azure Service Bus - ServiceBusTrigger

Jul 30, 2022

Today we will learn how to write code for bulk create records (e.g for custom data migrating purposes). I will give two methods (plus with different settings to see if they have positive differences) and compare the time to see the best results. Without further a do, let's go!...

C# , dynamics-crm , tips

Dataverse: How to use ExecuteByIdUserQueryRequest and ExecuteByIdSavedQueryRequest

Jul 23, 2022

In this blog post, we will learn how to use ExecuteByIdUserQueryRequest and ExecuteByIdSavedQueryRequest. Functionality-wise, these two functions have the same purpose: querying data from Dataverse and returning the result in string XML based on public/personal views that we...