-
Notifications
You must be signed in to change notification settings - Fork 327
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
New option to the JSON function to serialize unwrapped arrays #2231
Conversation
✅ No public API change. |
src/libraries/Microsoft.PowerFx.Json/Functions/JsonFunctionImpl.cs
Outdated
Show resolved
Hide resolved
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.
✅ No public API change. |
✅ No public API change. |
✅ No public API change. |
✅ No public API change. |
✅ No public API change. |
✅ No public API change. |
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.
✅ No public API change. |
Common request: ability of the JSON function to serialize [1,2,3] as
[1,2,3]
instead of[{"Value":1},{"Value":2},{"Value":3}]