MongoDB C#2.x驱动程序与Dictionaries的ElemMatch

本文关键字:Dictionaries ElemMatch 驱动程序 C#2 MongoDB | 更新日期: 2023-09-27 18:28:36

我正试图使用ElemMatch在MongoDB中使用2.2驱动程序查找文档,但没有成功。我收到一个异常,例如:

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驱动程序中完美地工作。

有人知道我做错了什么吗?

MongoDB C#2.x驱动程序与Dictionaries的ElemMatch

经过一些尝试和错误的实现,我找到了一种方法来做我需要的事情。我没有直接使用我的模型类,而是使用了一个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)));

通用的BsonDocument可以使用BsonSerializer:反序列化回我的模型类

var foundDoc = BsonSerializer.Deserialize<Document>(bsonCollection.Find(filter).Limit(1).FirstOrDefault());