我有一个包含 json 字符串的类。IE...
class SomeClass
{
... some properties
public string MyJson { get; set: }
}
我可以将它插入到 mongo 中,但 MyJson 字段只是一串 json。我希望能够搜索它。
我需要将它作为 BsonDocument 插入到 mongo 中吗?我怎么做?自定义序列化器?
MongoDB.Bson.Serialization.BsonSerializer.Deserialize<BsonDocument>(MyJson);
所有其他属性都是可搜索的。
干杯