web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics 365 | Integration, Dataverse...
Answered

Unable to cast object of type 'Microsoft.Xrm.Sdk.OptionSetValue' to type 'System.String'

(0) ShareShare
ReportReport
Posted on by 35

Hi, i am trying to read the value of an OptionSetValue using the code below, but it is not working and it's throwing the error :

Error of Plugin: System.InvalidCastException: Unable to cast object of type 'Microsoft.Xrm.Sdk.OptionSetValue' to type 'System.String'.
at Microsoft.Xrm.Sdk.Entity.GetAttributeValue[T(String attributeLogicalName).

Any ideas?

                    if (entity.Attributes.Contains("addresstypecode"))
                    {
                        var address_type = entity.GetAttributeValue("addresstypecode").Value.ToString();
                        QueryExpression query = new QueryExpression("customeraddress");
                        query.ColumnSet = new ColumnSet("addresstypecode");
                        query.Criteria.AddCondition("addresstypecode", ConditionOperator.Equal, address_type);
                        EntityCollection collection = service.RetrieveMultiple(query);
 

I have the same question (0)
  • Verified answer
    David Jennaway Profile Picture
    14,065 on at

    You shouldn't cast the OptionSetValue to a string. If you change line 3 to the following it should work

    var address_type = entity.GetAttributeValue<OptionSetValue>("addresstypecode").Value;

  • Verified answer
    Pankaj Gogoi Profile Picture
    3,177 on at

    Hi Jamal,

    Can you try with this.

    var address_type = ((OptionSetValue)entity["addresstypecode"]).Value;

    Best Regards

    PG

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > Microsoft Dynamics 365 | Integration, Dataverse, and general topics

#1
Martin Dráb Profile Picture

Martin Dráb 41 Most Valuable Professional

#2
iampranjal Profile Picture

iampranjal 39

#3
Satyam Prakash Profile Picture

Satyam Prakash 35

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans