We have enum with following values:
- Value1 - localized to 'Value 1' via [Display(Name = "Value 1")]
- Value2 - localized to 'Value 2' via [Display(Name = "Value 2")]
- etc.
But in web API we would like to accept their localized values instead of enum values (so 'Value 1' instead of Value1).
In client edmx property is generated as a string so the question is - will server accept 'Value 1' by default or do we have to implement special logic to handle it?