DevForce Help Reference
EntityTypesRequiringPostSaveRefresh Property


Gets or sets the types of entities to be included in the refresh that is performed after a save.
Syntax
'Declaration
 
Public Property EntityTypesRequiringPostSaveRefresh As IList(Of Type)
'Usage
 
Dim instance As SaveOptions
Dim value As IList(Of Type)
 
instance.EntityTypesRequiringPostSaveRefresh = value
 
value = instance.EntityTypesRequiringPostSaveRefresh
public IList<Type> EntityTypesRequiringPostSaveRefresh {get; set;}
Remarks
By default, entities are not "refreshed" on the server before returning them to the client. This refresh involves requerying the database and can cause reduced performance. If entities of certain types must be refreshed/requeried, then add them to the EntityTypesRequiringPostSaveRefresh 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