如何为自定义JsonConverter设置FloatParseHandling.Decimal?

我们有一个结构DecimalDbValue,它内部仅保存一个小数位字段,我想对其所有类型进行反序列化。

它使用魔术数字(decimal.MinValue)表示“空”值。它是在.net 2.0之前创建的,具有可空值类型!

这是我们的结构的精简版:

    [Serializable]
    [JsonConverter(typeof(DecimalDbValueJsonConverter))]
    public struct DecimalDbValue : ISerializable
    {
        private readonly Decimal _decValue;

        public DecimalDbValue(
            decimal init)
        {
            _decValue = init;
        }

        [JsonConstructor]
        public DecimalDbValue(
            decimal? init)
        {
            if (init.HasValue)
                _decValue = init.Value;
            else
                _decValue = decimal.MinValue;
        }

        private DecimalDbValue(
            SerializationInfo objSerializationInfo,
            StreamingContext objStreamingContext)
        {
            _decValue = objSerializationInfo.GetDecimal("value");
        }

        public bool IsNotNull
        {
            get
            {
                return !IsNull;
            }
        }

        public bool IsNull
        {
            get
            {
                return _decValue.Equals(Decimal.MinValue);
            }
        }

        public Decimal Value
        {
            get
            {
                return _decValue;
            }
        }

        public void GetObjectData(
            SerializationInfo info,
            StreamingContext context)
        {
            info.AddValue("value", _decValue);
        }
}


我创建了一个JsonConverter:

    class DecimalDbValueJsonConverter : JsonConverter
    {
        public override bool CanConvert(Type objectType)
        {
            return typeof(DecimalDbValue) == objectType;
        }

        public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
        {
            var value = reader.Value == null ? (decimal?)null : Convert.ToDecimal(reader.Value);
            return new DecimalDbValue(value);
        }

        public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
        {
            var dbValue = (DecimalDbValue)value;
            if (dbValue.IsNull)
                writer.WriteNull();
            else
                writer.WriteValue(dbValue.Value);
        }
    }


并在DecimalDbValue结构上设置属性[JsonConverter(typeof(DecimalDbValueJsonConverter))]

我添加了一个测试:

        [Test]
        public void TestMaxDecimalDbValue()
        {
            var s = new DecimalDbValue(decimal.MaxValue);
            var json = JsonConvert.SerializeObject(s, Formatting.Indented);
            var x = JsonConvert.DeserializeObject<DecimalDbValue>(json);

            Assert.AreEqual(s, x);
        }


但它抛出:
System.OverflowException : Value was either too large or too small for a Decimal.

如何为JsonConverter设置FloatParseHandling.Decimal?如何使其也适用于MaxValue?还有其他办法吗?

其实我想让它像decimal?一样进行序列化/反序列化(可空的十进制)

谢谢

最佳答案

这似乎是不可能的。

因此,我完全删除了JsonConverter。

在结构上设置此属性:

[JsonObject(MemberSerialization.OptIn)]


以及在构造函数上的代码:

 [JsonConstructor]
    public DecimalDbValue(
        decimal? init) //IMPORTANT: if you change the name of init - rename the JsonProperty below too - you might break all existing json out there thou!


以及在get属性上的内容:

[JsonProperty("init")]
    public Decimal Value
    {
        get
        {
            return _decValue;
        }
    }


不幸的是,这使json膨胀:

{
    "init": 79228162514264337593543950335.0
}

10-05 20:09