Post by: syed hussain in All C# Dynamics 365 CE
Summary I was processing large quantities of FetchXML queries using Apache Kafka and ran into an issue where Kafka threw an Invalid XML error. The way to solve this issue…
Post by: syed hussain in All C# Integration Design Patterns
There isn't an official way or method to empty an Azure Service Bus Queue using the Nuget assemblies. The following approach loops through the message list and empties the contents…
Post by: syed hussain in All C#
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…
Post by: syed hussain in All C# Dynamics 365
The following code captures record updates in a Dynamics 365 CE plugin, and stores this in the description field.
Post by: syed hussain in All C# Tips
To reduce that cyclomatic complexity often produced by condition statements like IF/ELSE of Switch, it’s often easier to store functions in a Dictionary and invoke them when required. There are…
Post by: syed hussain in All C# Development Dynamics 365 CE Microsoft Azure
Below I've listed the various grant types that can be used to access Dynamics 365 Web API.
Post by: syed hussain in All C#
Here is a quick way to update an assembly in Dynamics 365 CE without using the Plugin registration tool.
Post by: syed hussain in All C#
A quick cheat-sheet to help write LINQ code.
Post by: syed hussain in All Azure DevOps C#
Here is a code snippet demonstrating how to connect to Azure DevOps using C#.
Post by: syed hussain in All C# Development
I was struggling to understand how to secure my Web API endpoint using some form of authentication mechanism. During my search, I came across a video on YouTube created by…