我正在尝试使用ElemMatch在使用2.2驱动程序的MongoDB中查找文档但没有成功。我收到的例外情况如下:
System.InvalidOperationException:字段的序列化程序 'EnabledForProduct'必须实现IBsonArraySerializer并提供 项目序列化信息。
以下是我班级的表现:
public class Document
{
public string Id {get; set;}
public Dictionary<Product, bool> EnabledForProduct { get; set; }
}
public enum Product {Product1,Product2};
我的ClassMap看起来像这样:
BsonClassMap.RegisterClassMap<Document>(cm =>
{
cm.AutoMap();
cm.MapMember(c => c.EnabledForProduct)
.SetSerializer(new DictionaryInterfaceImplementerSerializer<Dictionary<Product, bool>>(DictionaryRepresentation.ArrayOfDocuments,
BsonSerializer.LookupSerializer<int>(),
BsonSerializer.LookupSerializer<bool>()));
});
尝试使用过滤器时会发生异常,例如:
Builders<Document>.Filter.ElemMatch(f => f.EnabledForProduct,
x => x.Key == Product1 && x.Value))
这曾经在1.x驱动程序中完美运行。
有谁知道我做错了什么?
答案 0 :(得分:3)
好吧,经过一些试验和错误实施后,我想出了一种方法来做我需要的。而不是直接使用我的模型类,我最终只为我的ElemMatch过滤器使用BsonDocument集合,如下所示:
var bsonCollection = database.GetCollection<BsonDocument>("testcollection");
过滤器的创建方式如下:
var filter = Builders<BsonDocument>.Filter.ElemMatch("EnabledForProduct", Builders<BsonDocument>.Filter.And(Builders<BsonDocument>.Filter.Eq("k",(int)Product.Product1),Builders<BsonDocument>.Filter.Eq("v",true)));
可以使用BsonSerializer将通用BsonDocument反序列化回我的模型类:
var foundDoc = BsonSerializer.Deserialize<Document>(bsonCollection.Find(filter).Limit(1).FirstOrDefault());