-
Notifications
You must be signed in to change notification settings - Fork 60
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
Adding support for more types when outputting to JSON #173
Conversation
dc61d84
to
83d54a9
Compare
83d54a9
to
669b987
Compare
@bowencode this PR gets into much of the code you wrote in the core as well as unit tests. Can you review this? |
Re. @philnach's comment: I just extended the existing methods to handle more types.
I am not sure what advantages the Convert class would bring to this case, as the next step (the Json writer WriteNumber) requires specific types.
Den 21. februar 2025 19.40.54 CET, Phil Nachreiner ***@***.***> skrev:
…
@philnach commented on this pull request.
> @@ -111,6 +136,60 @@ private static JsonEncodedText GetAsUnescaped(string text)
return JsonEncodedText.Encode(text, JavaScriptEncoder.UnsafeRelaxedJsonEscaping);
}
+ internal static bool TryGetLong(object? x, out long number)
+ {
+ if (x is long l) {
Curious as to why not use the [Convert ](https://learn.microsoft.com/dotnet/api/system.convert?view=net-9.0) class?
--
Reply to this email directly or view it on GitHub:
#173 (review)
You are receiving this because you authored the thread.
Message ID: ***@***.***>
|
The advantage of the Convert class is you wouldn't have to write methods to handle each of the conversions and instead could rely on calling the Convert method appropriate to the type. I see you were following the existing pattern, but if you can rely on the Convert class for the actual conversions it would reduce the number of lines of code. |
Interfaces/Cosmos.DataTransfer.Common.UnitTests/Cosmos.DataTransfer.Common.UnitTests.csproj
Outdated
Show resolved
Hide resolved
Addresses issue AzureCosmosDB#152. Relocates DataItemJsonConverter from Interface to Common and adds unit testing with coverage reporting.
Added code coverage.
51b38d1
to
e09bbb4
Compare
@stefanedwards this fails the build test. Can you check on this? |
Added unittests with a Cosmos DB connection. Defaults to use a local Cosmos DB emulator connection with a github action to spin one up.
e09bbb4
to
2895be2
Compare
I have no idea why but I cannot merge this thing. @philnach or @bowencode can one of you review/approve so I can merge this? |
This pull request addresses #152.
It ensures that various numeric types (long, short, bytes, signed and unsigned) are outputted correctly and not as strings or cast to doubles and then written as exponentials.
The three commits do:
Cosmos.DataTransfer.Common
,Cosmos.DataTransfer.CosmosExtension
andCosmos.DataTransfer.JsonExtension
.Cosmos.DataTransfer.CosmosExtension
that can use an actual Cosmos DB connection, together with a github action that allows it to run a Cosmos DB emulator.