gpt4 book ai didi

mongodb-.net-driver - BsonDefaultValue 设置为空列表

转载 作者:行者123 更新时间:2023-12-05 05:26:23 27 4
gpt4 key购买 nike

一个简单的问题,如何将 BsonValue 的默认值设置为空列表

    [BsonElement("Networks")]
[BsonRepresentation(BsonType.String)]
[BsonIgnoreIfNull]
[BsonDefaultValue(new List<SocialProfileTypes>() { })]
[BsonIgnoreIfDefault]
public UniqueList<SocialProfileTypes> Networks
{
get { return networks; }
set { networks = value; }
}

作为[BsonDefaultValue(new List<SocialProfileTypes>() { })]给出语法错误

Error   8   An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type

最佳答案

这是 C# 语言约束。属性中的值必须是编译时常量。

关于 mongodb 驱动,你需要使用代码来设置这样的值(注意:没有编译这个,但它会类似)

BsonClassMap.RegisterClassMap<MyClass>(cm =>
cm.AutoMap();
cm.MapMember(x => x.Networks).SetDefaultValue(new List<SocialProfileTypes>())
});

我相信这无论如何都会失败,因为 List 没有实现或继承自 UniqueList,因此您也必须修复它。

关于mongodb-.net-driver - BsonDefaultValue 设置为空列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26671182/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com