I am working with OData for the first time and have a model entity with the following properties:
public IEnumerable<string> Genres { get; set; } public IEnumerable<string> GenresFiltered { get; set; } When I make the web call to retrieve data from the model I get the following message:
'The property 'Genres' on type 'xxxx' is not a valid property. Properties whose types are collection of primitives or complex types are not supported
Is there a way to workaround this error to display a list of strings in Odata?
List<T>instead stackoverflow.com/questions/4462921/…