sql >> データベース >  >> NoSQL >> MongoDB

カスタムデシリアライズ

    IBsonSerializerを作成する必要があります またはSerializerBase<> BsonSerializerAttributeを使用してシリアル化するプロパティにアタッチします 。次のようなもの:

    public class BsonStringNumericSerializer : SerializerBase<double>
    {
        public override double Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
        {
            var type = context.Reader.GetCurrentBsonType();
            if (type == BsonType.String)
            {
                var s = context.Reader.ReadString();
                if (s.Equals("N/A", StringComparison.InvariantCultureIgnoreCase))
                {
                    return 0.0;
                }
                else
                {
                    return double.Parse(s);
                }
            }
            else if (type == BsonType.Double)
            {
                return context.Reader.ReadDouble();
            }
            // Add any other types you need to handle
            else
            {
                return 0.0;
            }
        }
    }
    
    public class YourClass
    {
        [BsonSerializer(typeof(BsonStringNumericSerializer))]
        public double YourDouble { get; set; }
    }
    

    属性を使用したくない場合は、IBsonSerializationProviderを作成できます。 BsonSerializer.RegisterSerializationProviderを使用して登録します 。

    MongoDB C#Bsonシリアル化の完全なドキュメントはここにあります




    1. MongoDBへのメルトダウンパフォーマンスの影響:AWS、Azure、DigitalOcean

    2. AzureのパフォーマンスベンチマークでのRedis–Redis™とAzureキャッシュのScaleGrid

    3. 複数のパターンとの一致のためのRedisキー機能

    4. MongoDB-$ sizeの引数は配列である必要がありますが、タイプはEOO/missingでした