Cloud Datastore does not support Decimal values, only floats, so how do I save and load base10 values like 1.23 ?
I have thought about storing as Int and saving 1.23 as 123, which would work I suppose, with some simple math to move the dot, but is that really the way to go? It seems tedious to be doing this kind of conversion all the time, just to save and load the exact base10 value.
Am I missing something?