I am naming my MYSQL tables and columns using underscore characters:
this_is_a_table
should map to: ThisIsATable
this_is_a_column
should map to: ThisIsAColumn
Dapper can handle this mapping if i set:
DefaultTypeMap.MatchNamesWithUnderscores = true;
Is there any way to enable this in Dapper-Extensions so that it maps undescore automatically?
It's pretty straightforward, you just need to create a custom mapping. Here is an example:
Create table:
Test: