Before adding OData to my project, my routes where set up like this:
config.Routes.MapHttpRoute( name: \"ApiById\", routeTempl
In my case I needed to change a non-public property setter to public.
public string PersonHairColorText { get; internal set; }
Needed to be changed to:
public string PersonHairColorText { get; set; }