【具有字典的MongoDB C#2.x驱动程序ElemMatch】教程文章相关的互联网学习教程文章

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

我正在尝试使用ElemMatch使用2.2驱动程序在MongoDB中查找文档,但未成功.我收到如下异常:System.InvalidOperationException : The serializer for field‘EnabledForProduct’ must implement IBsonArraySerializer and provideitem serialization info.这是我的班级样子:public class Document {public string Id {get; set;}public Dictionary<Product, bool> EnabledForProduct { get; set; } } public enum Product {Product1...