Override field name deserialization in ServiceStack
I'm using ServiceStack to deserialize some HTML form values but can't figure out how to override the value that each field should be read from. For example, the form posts a value to first_name but the property on my POCO is called FirstName . how would I do mapping like that in ServiceStack The ServiceStack Text serializers support [DataMember] aliases where you can use the Name parameter to specify what alias each field should be, e.g: [DataContract] public class Customer { [DataMember(Name="first_name")] public string FirstName { get; set; } [DataMember(Name="last_name")] public string