Dynamics 365 & Lambda Snippets

Here is a quick list of most used Lambda functions in Dynamics 365 CE.

Soundex for faster search

Soundex is a phonetic algorithm that is used to index and search for words based on their pronunciation rather than their spelling. The algorithm assigns a code to each word…

Router-view does not refresh on Router-link

When using the router-view with a router-link, the Browser URL will reload but the page will not refresh with the updated contents.

Heroku Application Error when running CI build & Release Pipelines

If you are trying to deploy an app to Heroku and your deployment fails - use the following steps to diagnose and solve the issue.

Create a MongoDB Docker Container

Just a quick tip on creating a MongoDB container from the terminal.

Best Practice when naming Azure Resources

When creating Azure resources, it's very easy to get lost in the volume of resources that often get created as part of a simple deployment like a new Virtual Machine.…

Azure Functions vs. Durable Functions

I was working with a client a few months ago trying to decide on a serverless architecture for a payment system. After considering the following for several months, and months…

Implementing the Anti-Corruption Layer pattern in Data-Intensive Applications (w)

Summary Most applications rely on other systems for some data or functionality. For example, when a legacy application is migrated to a modern system, it may still need existing legacy…

Create a table from an API JSON response

Here is a code snippet that will turn a JSON response into a table.

EIP – Sequential Convoy Integration Pattern (w)

Summary Sequential Convoy is an integration pattern that is heavily used with Microsoft Dynamics 365 CE. Front-end applications that need to push data into Dynamics often need the data to…