DevForce Help Reference
EntityTypesExcludedFromPostSaveRefetch Property


Gets or sets the types of entities which should not be returned to the client after a save.
Syntax
'Declaration
 
Public Property EntityTypesExcludedFromPostSaveRefetch As IList(Of Type)
'Usage
 
Dim instance As SaveOptions
Dim value As IList(Of Type)
 
instance.EntityTypesExcludedFromPostSaveRefetch = value
 
value = instance.EntityTypesExcludedFromPostSaveRefetch
public IList<Type> EntityTypesExcludedFromPostSaveRefetch {get; set;}
Remarks
By default, all saved entities are returned to the client when the save completes. In some situations these updates are not required by the client or cause an unnecessary performance hit to send them. For example, audit entities created on the server are often not wanted on the client; or entities holding BLOBs or other large columns may not need to be refreshed on the client after the save. In these situations, the entity type can be added to the EntityTypesExcludedFromPostSaveRefetch list.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SaveOptions Class
SaveOptions Members

Send Feedback