The introduction of alternative keys in Dynamics CRM 2015 give us the ability to add unique identifier fields to entities in CRM. This is particularity useful when you need to store an unique identifier from an external system against a […]
When writing custom assemblies for Dynamics CRM you can add trace messages to your code to help track down problems and identify performance issues. Trace messages can logged by initializing the tracing service in your code and calling the Trace method. I usually add […]
I have started to have a look at the capabilities of interactive service hub for a potential project. The interactive service hub is a new user interface for Dynamics CRM currently targeted at service functionality. The interactive service hub user […]
Using NoLock can provide a performance boast to your CRM code when querying data. When you use NoLock the sql generated sets the transaction isolation level to READ UNCOMMITTED. What this means is that your query does not issue any […]
This is a quick tip which may save you some time if you frequently use Business Intelligence in Visual Studio to develop custom reports for Dynamics CRM. You can create a report RDL file and use this as the default […]