ObjectContext.Refresh メソッド (RefreshMode, IEnumerable)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
名前空間: System.Data.Entity.Core.Objects
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Overridable Sub Refresh ( _
refreshMode As RefreshMode, _
collection As IEnumerable _
)
'使用
Dim instance As ObjectContext
Dim refreshMode As RefreshMode
Dim collection As IEnumerable
instance.Refresh(refreshMode, collection)
public virtual void Refresh(
RefreshMode refreshMode,
IEnumerable collection
)
public:
virtual void Refresh(
RefreshMode refreshMode,
IEnumerable^ collection
)
abstract Refresh :
refreshMode:RefreshMode *
collection:IEnumerable -> unit
override Refresh :
refreshMode:RefreshMode *
collection:IEnumerable -> unit
public function Refresh(
refreshMode : RefreshMode,
collection : IEnumerable
)
パラメーター
- refreshMode
型 : System.Data.Entity.Core.Objects.RefreshMode
オブジェクト コンテキストでのプロパティの変更がデータベースのプロパティ値で上書きされるかどうかを示す RefreshMode 値。
- collection
型 : System.Collections.IEnumerable
更新するオブジェクトの IEnumerable コレクション。
例外
例外 | 状態 |
---|---|
ArgumentNullException | collection が null です。 |
ArgumentOutOfRangeException | refreshMode が無効です。 |
ArgumentException | collection が空であるか、オブジェクトがコンテキストにアタッチされていません。 |