Hi!
I am using a Extensible Connectivity 2.0 MA to import data from CRM Dynamics. I have created a schema which contains a multivalued attribute "schemaType.Attributes.Add(SchemaAttribute.CreateMultiValuedAttribute("Members", Microsoft.MetadirectoryServices.AttributeType.String));".
When doing a full import I have made a Ilist<string> which I want to add to the attribute created above (Members), but it fails. "csentry1.AttributeChanges.Add(AttributeChange.CreateAttributeAdd("Members",list));" gives the following exception:
"The value type List`1 is not compatible with the attribute type String" with "System.Collections.ListDictionaryInternal".
Have anyone encountered this or have any suggestion?