A DbKeyHashSet is a HashSet that can contain DbKeys.
See also HashSets. The Code example below shows how to use an ObjectHashSet.
public ObjectHashSet<BasketItemEntity> SelectedBasketItems
{
get { return Property(() => new ObjectHashSet<BasketItemEntity>(BasketItems.Type.ItemType)); }
}
In short, the same can be coded like this.
public ObjectHashSet<BasketItemEntity> SelectedBasketItems => Property(() => new ObjectHashSet<BasketItemEntity>(BasketItems.Type.ItemType));
Article ID: 140
Created: Mon, Aug 26, 2019
Last Updated: Mon, Aug 26, 2019
Online URL: https://wiki-ai-framework.abstract-it.nl/article/dbkeyhashset-140.html