Hi Friends,
I need to get the option set value while looping through the entity collection in a console application .
foreach (Entity r in ec.Entities)
{
string optionsetChanceofScuccess = r.Attributes["angus_chanceofsuccess"].ToString(); // not getting value
// string optionsetChanceofScuccess = r.FormattedValues["angus_chanceofsuccess"].ToString(); // giving error
}
Please suggest.
*This post is locked for comments