gpt4 book ai didi

c# - EF Code First 约定允许 ICollection 属性为空集合而不是 null?

转载 作者:行者123 更新时间:2023-11-30 13:40:17 25 4
gpt4 key购买 nike

我注意到,默认情况下,Entity Framework Code First 忽略实例化 ICollection<T>属性,除非集合中至少有一项。我更希望该集合保证始终为空 HashSet (即 HashSet 具有零项)而不是 null如果不存在任何项目。

EF Code First 是否有任何约定或设置可以实现这一点?

最佳答案

在实体的构造函数中刚刚设置实例化集合:

public sealed partial class EntityClass
{
[SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors",
Justification = "EF 4.1 requires them to be virtual, and RIA Services requires the collections to be instantiated.")]
public EntityClass()
{
OtherEntities = new List<OtherEntity>();
}

public virtual ICollection<OtherEntity> OtherEntities { get; set; }
}

抑制消息是针对 FXcop 的。

关于c# - EF Code First 约定允许 ICollection<T> 属性为空集合而不是 null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8408570/

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