微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

具有字典的MongoDB C#2.x驱动程序ElemMatch

我正在尝试使用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());

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐