Musíte vytvořit IBsonSerializer
nebo SerializerBase<>
a připojte jej k vlastnosti, kterou chcete serializovat pomocí BsonSerializerAttribute
. Něco jako následující:
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; }
}
Pokud nechcete používat atributy, můžete vytvořit IBsonSerializationProvider
a zaregistrujte jej pomocí BsonSerializer.RegisterSerializationProvider
.
Úplnou dokumentaci serializace MongoDB C# Bson lze nalézt zde