AutoMapper naming convention.
You can create your own naming convetion by defining a struct with this shape:
struct MyConvention { string convert(string identifier) { ... } string convertBack(string myConvention) { ... } }
The camel case naming convetion.
The lower undescore naming convetion.
The pascal case naming convetion.
See Source File
AutoMapper naming convention.
You can create your own naming convetion by defining a struct with this shape: