Bạn cần tạo IBsonSerializer
hoặc SerializerBase<>
và đính kèm nó vào thuộc tính bạn muốn tuần tự hóa bằng BsonSerializerAttribute
. Một cái gì đó như sau:
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; }
}
Nếu bạn không muốn sử dụng các thuộc tính, bạn có thể tạo một IBsonSerializationProvider
và đăng ký nó bằng BsonSerializer.RegisterSerializationProvider
.
Bạn có thể tìm thấy toàn bộ tài liệu về quá trình tuần tự hóa MongoDB C # Bson tại đây