C#

Posts in this category.

Get Environment Variable in a Flow using Custom Web API

Jun 24, 2021

Inspired by a blog post by Natraj about "Using Custom API as a trigger for Flow" that you can find here, I am thinking to create a sample collection of Custom Web API that all people can make use of/learn the code (the code design might not be suitable for you, but I open for...

Dynamics CRM Webhook vs Power Automate Cloud Flow vs Plugin

Jun 10, 2021

Do you know Dynamics CRM Webhooks? The definition from the official documentation: CRM Webhooks is a feature that enables CRM to call other URLs using HTTP patterns with publish/subscribe patterns. , I do not quite agree with the definition because we still can register the...

Dynamics CRM Plugin: Caching using Azure Redis Cache

Jun 2, 2021

One of the most common questions that we as Developers face is about caching the data. On the previous version (on-premise) of Dynamics, when we get a task to cache some data, we will use MemoryCache class. But in the cloud version, because we can't directly access the Server,...

Dynamics CRM Tips: Get Latest Target Entity Value in Plugin Side

May 25, 2021

Please Register for this event to learn more! If you are a Dynamics CRM Developer, you will agree with me. When creating Dynamics CRM Plugin, you will be thinking there is so much repetitive code that you need to apply when you want to do customization. Automatically what you do...

Dynamics CRM: Create Plugin Project Easier + Faster!

Apr 24, 2021

Creating plugin projects in the past is not a simple task. You need to remember a lot of steps to make it. From what I remember the steps are: Create .csproj, set .NET Framework 4.6.2, and Install Microsoft.CrmSdk.CoreAssemblies, etc. You can follow this link for the detailed...

General Tips on Dynamics CRM Plugin Development

Apr 2, 2021

On my blog, one of the most viewed posts is Dynamics CRM Plugin Development: Pre-Operation vs Post-Operation. This makes me realize that I need to create another blog post about plugin development, in general, to let you know the dos and don'ts in plugin development (in a general...

Dynamics CRM: Setup PowerApps.UIAutomation.Api for The UI Testing

Mar 26, 2021

Do you know that we can do UI Testing easily in Dynamics CRM? In this blog post, we will learn about how to set up a solution project for doing UI testing using the PowerApps.UIAutomation.Api nuget package. Like the naming, UI testing means that testing that being done...

Dynamics CRM: Implement Virtual Entity - Part 2

Mar 12, 2021

Last week, we already learned how to build a simple code to get data from Web-API to project the result in RetriveMultiple message that you can access here. Now we will continue to implement advanced scenarios for filtering, sorting, and paginating the data. Filtering + Sorting...

Dynamics CRM: Implement Virtual Entity - Part 1

Mar 5, 2021

Have you ever heard about Virtual Entity? In short, the Virtual Entity is read-only data. We can pull the data from any other data-source to Dynamics CRM to let users view the data. So now we will be experimenting create Virtual Entity and setup the code until we can see it in...

My Attempt to Implement Data Concurrency In Dynamics CRM

Feb 13, 2021

One of the hardest things to implement in Dynamics CRM is data concurrency. When multiple people are updating the same data, by default CRM will still allow it. But there is always a scenario where we want to prevent this thing and there is no simple way to implement it in...