Working with Custom Entities has been a little tough on me because of the High Learning curve involved. Finally I did win over and learnt quite a bit about using these entities in custom pages. It’s actually quite simple to work with the custom entities. Here’s a piece of code which will get the custom entity into a dynamic entity for us
1 2 3 4 5 6 | //Create of New information the custom entity DynamicEntity de_Custom = new DynamicEntity(); de_Custom.Name = "CustomEntityName"; de_Custom.Properties = PropertiesCollectionObject; TargetCreateDynamic tcd_Custom = new TargetCreateDynamic(); tcd_Custom.Entity = de_Custom; <a href="http://www.programmingfundas.com/blog/2008/11/29/working-with-custom-entites-in-ms-crm-40/#more-19" class="more-link">Continue reading 'Working with Custom Entites in MS CRM 4.0'</a> |