I'm querying the Dataverse OData API server using the Microsoft.OData.Client. I made a class which inherits DataServiceContext and I have property which represents Entity Set that I query.
That works perfectly, but I cannot map fields with name like field_name@OData.Community.Display.V1.FormattedValue. For example:
[OriginalName("field_name@OData.Community.Display.V1.FormattedValue")]
public string? FieldName{ get; set; }
In cases like this, I'm always getting the null values. There are regular values when I use the Postman.
Did anyone have same problem?