Hello everyone,
I have registered a post-image (with all attributes) for my plugin in CRM Online.
However, the multiselect optionset field is always null when I get it from the post-image.
Entity postImageEntity = (context.PostEntityImages != null && context.PostEntityImages.Contains(this.postImageAlias)) ? context.PostEntityImages[this.postImageAlias] : null; var values = postImageEntity.GetAttributeValue("new_multioption");
If I retrieve the record using the service.Retrieve, then everything works fine. But this is not good at performance.
Does anyone know why this happens?
Thanks,
Kim Anh