在 EF 类中使用的这个虚拟属性中,为什么它会返回HashSet<T>
?那是什么课?
public virtual ICollection<TownShip> TownShips
{
get
{
return this.TownShips ?? (this.TownShips = new HashSet<TownShip>());
}
set
{
this.TownShips = value;
}
}