H
I am trying to upgrade a code written in CRM 4 to CRM 2011. Does someone know what is the equivalent of this line of code in CRM 2011?
Lookup order = (Lookup)project.Properties["id"];
Thank you,
Mite
Gonzalo | gonzaloruizcrm.blogspot.com
Lookup is called EntityReference in crm 2011.
EntityReference order = (EntityReference)project.Properties["id"];
I hope it helps