我正在尝试使用Elemmatch使用2.2驱动程序在MongoDB中查找文档,但未成功.我收到如下异常:
system.invalidOperationException : The serializer for field
‘EnabledForProduct’ must implement IBsonArraySerializer and provide
item serialization info.
这是我的班级样子:
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驱动程序中可以正常工作.
有人知道我在做什么错吗?
解决方法:
好吧,经过一些反复试验的实现,我想出了一种方法来做自己需要的事情.我没有直接使用模型类,而是最终将BsonDocument集合仅用于我的Elemmatch过滤器,如下所示:
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());