The Microsoft Dynamics CRM 2011 Software Development Kit ships with a tool (CrmSvcUtil) which can automatically generate helper classes to make it easier to work with your CRM entities and their attributes. Developers can take advantage of type checking at compile time and intellisense for entity, attribute and relationship definitions. In this post, we will look at some simple examples on how to perform CRUD operations using early binding.
Generating the Helper Class
In the command prompt, navigate to <installation directory>\Microsoft Dynamics CRM 2011 SDK\sdk\bin. Enter crmsvcutil.exe to run the application and you will see the available parameters to ...