Click or drag to resize

PostCollectionChangeAction Enumeration

Enum to specify what to do when the data in the related collection of an entity view changes. A change in data can be: entity added or changed. If an entity is removed from the underlying collection, the entity is simply removed from the entity view, as the view doesn't contain any data by itself.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax
public enum PostCollectionChangeAction
Members
  Member nameValueDescription
NoAction0 A set filter or sorter isn't re-applied to the changed entity/ies, so the change won't affect the order of the entities in the view nor which rows are in the view.
ReapplyFilterAndSorter1 The set filter and the set sorter are re-applied to the entity which caused the change. This is the default and will make the entity view a true 'live' view on the related entity collection
ReapplySorter2 The set sorter is re-applied to the entities in the view.
See Also