How can I tell Asp.Net Mvc Model Binder to bind some values in the payload to some specific properties in the POCO Model?
For example I have a POCO Model which has 2 properties: FirstName and LastName, but the JSON object I'm getting has different names, like first_name_text and last_name_text. I've used a Model Binder to bind first_name_text to FirstName property in POCO etc.
I'm using Asp.net MVC 5.
Thank you