Hi, Experts!
I create new Entity - nav_role
It has Attribute - "nav_rolecode" with Type - Set of Parameters. (in Web interface you can select the desired option from the drop down list).
Each Parameter has Label and Value - so how can I set this Attribute in c#?
for example - i tried this:
Entity NavRole = new Entity("nav_role");
NavRole.Attributes["nav_systemuserroleid"] = new EntityReference("systemuser", FindUID);
NavRole.Attributes["nav_validfrom"] = DateTime.Today;
NavRole.Attributes["nav_rolecode"] = "808630010";
"808630010" it's a Value of Parameter in Set of Parameters. So it doesn't work - for "nav_rolecode"
Help me please with this....