-
Notifications
You must be signed in to change notification settings - Fork 120
Allow different spellings for comparison #145
Comments
@Matt-17 |
@cezarypiatek Only thing I saw, but is probably a new issue are cases like "Enabled" vs "IsEnabled", "Type" vs "Catalog_Type" or even very special cases in Germany with "a" vs "ae" vs "ä" you cannot handle all of them. Anyway, for most database mappings this is a great improvement now. Thank you! |
Can you provide a sample mapping code that illustrate all the cases that you mentioned? |
Yes, I try to figure out a bunch of samples. But as mentioned, this is much further than just ignoring uppercase and snake_case. So I suggest, this issue is closed by now and I think about it further (also how it could be solved, since this is definitely not desired behaviour by everybody). |
An official version 1.20.463 with this feature has been released |
Sometimes I'm missing some mappings for different spelled properties. For example I have in my EF6 DB context something like:
some_special_ID
and in my own classSomeSpecialId
it does not match them. Here could be a broader search done (case insensitive and removed _).Edit - this part is duplicate:
Also it would be great, if I could choose non-compilable mappings for missing properties like
Property1 = TODO,
TODO = Property2
Here I would immediatly see, there is something missing (in cases I need this addin, I have 50 Properties and more, not so easy to notice, something is missing.
Thank you and great add in. :-)
The text was updated successfully, but these errors were encountered: