When using the [FromODataUri] attribute for a string property starting with a digit, it gets interpreted as a number.
Reproduce steps
In Controller: [FromODataUri] string appId. Then send request localhost:5004/controller?appId=105E84FF1024
Expected result
appId = "105E84FF1024"
Actual result
appId = "Infinity"