I want to access the systemuserroles entity in an Canvas App. I use a custom table called systemuserrolescollection. This works. Then when I create a gallery with the new entity as the source, I cannot see all the fields.
I can see the primary key systemuserroleid. But I cannot access the roleid and systemuserid. Type guid.
<EntityType Name="systemuserroles" BaseType="mscrm.crmbaseentity">
<Key>
<PropertyRef Name="systemuserroleid"/>
</Key>
<Property Name="versionnumber" Type="Edm.Int64"/>
<Property Name="systemuserroleid" Type="Edm.Guid"/>
<Property Name="roleid" Type="Edm.Guid"/>
<Property Name="systemuserid" Type="Edm.Guid"/>
</EntityType>
Any idea how to access these fields?