当键是枚举时,以 "Document" 表示形式序列化字典

Serialize a Dictionary in the "Document" representation, when the key is an Enum

我正在尝试将下面的 "MyClass" 写入 Mongo 集合:

public enum MyEnum { A, B, C };

public class MyClass
{
    [BsonId(IdGenerator = typeof(StringObjectIdGenerator))]
    public string Id { get; set; }

    [BsonDictionaryOptions(DictionaryRepresentation.Document)]
    public Dictionary<MyEnum , MyOtherClass> Items { get; set; }
}

public class MyOtherClass
{
    public string MyProp { get; set; }
}

我想将其序列化为文档,因为这是最简洁的表示:

{
    _id: "12345",
    Items: {
        A: {
            MyProp: "foo"   
        },
        B: {
            MyProp: "bar"   
        },
        C: {
            MyProp: "baz"   
        },
    }
}

Mongo 引擎在序列化时抛出异常:

When using DictionaryRepresentation.Document key values must serialize as strings.

所以,我想也许我可以注册一个约定,使枚举序列化为字符串:

var conventions = new ConventionPack();
conventions.Add(new EnumRepresentationConvention(BsonType.String));
ConventionRegistry.Register("Custom Conventions", conventions, type => type == typeof(MyClass));

不幸的是,这似乎没有效果,引擎抛出同样的异常。

当键是枚举类型时,有什么方法可以在文档表示中序列化字典吗?

您可以通过显式注册一个将您的 enum 序列化为字符串的序列化程序来实现。您可以使用内置 EnumSerializer class 和 BsonType.String 表示:

BsonSerializer.RegisterSerializer(new EnumSerializer<MyEnum>(BsonType.String));