In a web application I use Nancy for creating a REST service. Unfortunately, in HTML our field names are lowercase (firstName
), but the appropriate properties in .NET are uppercase (FirstName
). Moreover, we have some fields that don't map 1:1, such as id
that shall become TicketId
in .NET.
Now I have two question on this:
Support for this is there, but it's not as fully featured as I'd like.
If you take a look at the IFieldNameConverter interface (it's default implementation is DefaultFieldNameConverter), that's what handles converting field names for things like casing.
For more complicated mappings you'd have to implement an ITypeConverter, you could just "wrap" the default converter(s) - depending on your data - and alter the input before calling the default one.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With