You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From what I can tell, the name matching strategy is only applied between two objects. It would be a big benefit for Dictionary<->Object mapping, especially when using PATCH methods in WebApi since json property names are usually camel-case/snake-case while classes are usually Pascal.
The text was updated successfully, but these errors were encountered:
Note: for performance reason, I added 2 strategies NameMappingStrategy.ToCamelCase is for Object to Dictionary NameMappingStrategy.FromCamelCase is for Dictionary to Object
NameMappingStrategy.Flexible is also working, but performance might be low.
Hello,
From what I can tell, the name matching strategy is only applied between two objects. It would be a big benefit for Dictionary<->Object mapping, especially when using PATCH methods in WebApi since json property names are usually camel-case/snake-case while classes are usually Pascal.
The text was updated successfully, but these errors were encountered: