EFクラスで使用されるこのVirtualプロパティで、なぜそれが返されるのHashSet<T>
ですか?そのクラスは何ですか?
public virtual ICollection<TownShip> TownShips
{
get
{
return this.TownShips ?? (this.TownShips = new HashSet<TownShip>());
}
set
{
this.TownShips = value;
}
}