Issue with string[]? (returned as null on OData Client) #3107
swebb-RMS
started this conversation in
OData Libraries 8
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! we have an issue using string[] with the OData Client, we have a class where we have a field like
public string[]? Types { get; set; } i
if we use the OData client we get the value as null
but if we change the field to
public List < string > ? {get; set;}
we get the right value
Do you know if this is the expected behavior for the ODataClient?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions