tips

Posts in this category.

Implement a Generic Concurrency Action in Dataverse

Sep 16, 2022

Today, we will implement a generic concurrency solution that I think will fit as many scenarios as we can. With the help of Azure SQL Server + Dataverse Custom API, we can implement a simple architecture solution to handle the concurrency (only allowing the first operation to be...

Model-Driven-Apps: How to use setIsValid method

Sep 10, 2022

When dealing with client script customization, most of the time we are dealing with data validation where the common steps are like the below snippet: var blog = blog || {}; (function() { this.formOnLoad = function(executionContext){ var formContext =...

Simple Approval Design For Model-Driven Apps

Sep 3, 2022

Do you know the In-App Notification feature from Model Driven Apps? This feature can create a notification that targeted a specific User. We also can add action to the notification so the User can also interact with multiple actions (now is limited to just an open URL). In short,...

Let's try Dataverse Dependent Assemblies for Plug-ins

Aug 6, 2022

For a long time, Developers for Dataverse don't have an official way to use third-party libraries when creating plugin(s). If we want to reuse existing code, the only official way to do it is to use the Shared Project which is limited to the code that we own + the IntelliSense in...

Enable Log instantly by passing ILogger in DataverseServiceClient

Jul 16, 2022

When you are using DataverseServiceClient, we can see the constructor where we can pass an instance of ILogger. The purpose of this, of course, is to get more information regarding what is happening in our system (you also can monitor the performance). Depending on the scenario...