CRM Dynamics contains native entities (contact, account, opportunity, appointment …).
The CRM SDK API already contains specific classes for these native entities.
It is possible to create customized entities. To use them in programs, i found that there
are two options for that : either use crm webservice or use the CRM SDK API. With the latter option, you have to use Dynamic entity to access your custom entities.
Asynchronously run a method with the Async and Await keywords
I wrote this small class to illustrate the use of the Async and Await keywords which were added in .NET 4.5. It should quickly help anyone curious to understand this easier way to write asynchronous programs in C#. The output below (DOS window) shows clearly the difference between the call of a synchronous method and … Read more