1

有没有办法只序列化我的对象的私有字段,它在 MongoDB中具有DataMember属性?

string json = 
    item.ToJson(
        new MongoDB.Bson.IO.JsonWriterSettings() 
        { 
            GuidRepresentation = GuidRepresentation.Standard, 
            Indent = false, 
            OutputMode = MongoDB.Bson.IO.JsonOutputMode.JavaScript 
        }
     );
4

1 回答 1

1

要防止公共字段被序列化,请使用BsonIgnore属性:

public class Car
{
    public string Brand;

    public string Model;

    [BsonIgnore]
    public double Price;
}

在上面的示例代码中,当类被序列化时,价格字段将被忽略。

于 2012-12-24T20:04:35.670 回答