Musisz utworzyć IBsonSerializer
lub SerializerBase<>
i dołącz go do właściwości, którą chcesz serializować za pomocą BsonSerializerAttribute
. Coś takiego:
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; }
}
Jeśli nie chcesz używać atrybutów, możesz utworzyć IBsonSerializationProvider
i zarejestruj go za pomocą BsonSerializer.RegisterSerializationProvider
.
Pełna dokumentacja serializacji MongoDB C# Bson znajduje się tutaj