Update a collection of objects in the object context with data from the data source

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public abstract void Refresh(
	RefreshMode mode,
	IEnumerable entities
)
Visual Basic
Public MustOverride Sub Refresh ( 
	mode As RefreshMode,
	entities As IEnumerable
)
Visual C++
public:
virtual void Refresh(
	RefreshMode mode, 
	IEnumerable^ entities
) abstract
F#
abstract Refresh : 
        mode : RefreshMode * 
        entities : IEnumerable -> unit 

Parameters

mode
Type: BrightstarDB.Client..::..RefreshMode
A RefreshMode value that indicates whether property changes in the object context are overwritten with property changes from the data source
entities
Type: System.Collections..::..IEnumerable
The objects to be refreshed

See Also