ObjectContext.RefreshAsync メソッド (RefreshMode, IEnumerable)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
オブジェクト コンテキスト内のオブジェクトのコレクションをデータベース内のデータで非同期的に更新します。
名前空間: System.Data.Entity.Core.Objects
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function RefreshAsync ( _
refreshMode As RefreshMode, _
collection As IEnumerable _
) As Task
'使用
Dim instance As ObjectContext
Dim refreshMode As RefreshMode
Dim collection As IEnumerable
Dim returnValue As Task
returnValue = instance.RefreshAsync(refreshMode, _
collection)
public Task RefreshAsync(
RefreshMode refreshMode,
IEnumerable collection
)
public:
Task^ RefreshAsync(
RefreshMode refreshMode,
IEnumerable^ collection
)
member RefreshAsync :
refreshMode:RefreshMode *
collection:IEnumerable -> Task
public function RefreshAsync(
refreshMode : RefreshMode,
collection : IEnumerable
) : Task
パラメーター
- refreshMode
型 : System.Data.Entity.Core.Objects.RefreshMode
オブジェクト コンテキストでのプロパティの変更がデータベースのプロパティ値で上書きされるかどうかを示す RefreshMode 値。
- collection
型 : System.Collections.IEnumerable
更新するオブジェクトの IEnumerable コレクション。
戻り値
型 : System.Threading.Tasks.Task
非同期操作を表すタスク。
例外
例外 | 状態 |
---|---|
ArgumentNullException | collection が null です。 |
ArgumentOutOfRangeException | refreshMode が無効です。 |
ArgumentException | collection が空であるか、オブジェクトがコンテキストにアタッチされていません。 |
解説
同じコンテキスト インスタンスに対する複数のアクティブ操作はサポートされません。 このコンテキストで別のメソッドを呼び出す前に、非同期操作が完了したことを確認するために await を使用します。