ObjectContext.Refresh 方法 (RefreshMode, IEnumerable)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 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 为空或对象未附加到上下文。 |