I've generated early bound classes using crmsvcutils tool, and need to use them in plugins
the IOrganizationService Create method needs to take an Entity type,
How do i use it with my early bound types?
heres my code:
cpr_number number = new cpr_number(); number.cpr_numberint = 2; service.Create(number); //compile error becuase it accepts Entity type
i want to work with early bound entities, what to do in this situation?
(i have like 10 more entities to do and it'll be frustrating to type the fields schemas and entity names everytime)