I have a entity which has 2 properties
ProductName (string) Id (string) Categories (string[])
A product can have several categories. So I created my BDC Model
<TypeDescriptor TypeName="System.Collections.Generic.IEnumerable`1[[System.String]]" IsCollection="true" Name="Categories">
<TypeDescriptors>
<TypeDescriptor TypeName="System.String" Name="Category" />
</TypeDescriptors>
</TypeDescriptor>
<TypeDescriptor TypeName="System.String" Name="ProductName" />
<TypeDescriptor TypeName="System.String" Name="Id" />
When a profile page is created and i view the item on the profile page, It displays correctly, the ProductName and the ID but the value of Categories is always System.String[].
I also tried replacing by using just
<TypeDescriptor TypeName="System.String[]" Name="Categories" />
Is there something wrong in my model? or is it just impossible to use collections for properties.
Thanks in advance.