-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: double underscore in case uppercase character is preceeded by an underscore #190
Fix: double underscore in case uppercase character is preceeded by an underscore #190
Conversation
💚 CLA has been signed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks for catching this @andreycha ! Waiting to sort out the CLA before merging.
Can you retarget this PR to the main
branch?
Done. Probably it's worth marking somewhere that once dotnet/runtime#782 is released (seems to be part of .NET 8) custom naming policy can be dropped. |
…y' of https://github.com/andreycha/ecs-dotnet into fix/underscore-and-uppercase-in-snake-case-naming-policy
Problem
Currently property like
User_Id
is serialized asuser__id
(note double underscore).Changes