ObjectContext.RefreshAsync 方法 (RefreshMode, IEnumerable, CancellationToken)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
命名空间: System.Data.Entity.Core.Objects
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Overridable Function RefreshAsync ( _
refreshMode As RefreshMode, _
collection As IEnumerable, _
cancellationToken As CancellationToken _
) As Task
用法
Dim instance As ObjectContext
Dim refreshMode As RefreshMode
Dim collection As IEnumerable
Dim cancellationToken As CancellationToken
Dim returnValue As Task
returnValue = instance.RefreshAsync(refreshMode, _
collection, cancellationToken)
public virtual Task RefreshAsync(
RefreshMode refreshMode,
IEnumerable collection,
CancellationToken cancellationToken
)
public:
virtual Task^ RefreshAsync(
RefreshMode refreshMode,
IEnumerable^ collection,
CancellationToken cancellationToken
)
abstract RefreshAsync :
refreshMode:RefreshMode *
collection:IEnumerable *
cancellationToken:CancellationToken -> Task
override RefreshAsync :
refreshMode:RefreshMode *
collection:IEnumerable *
cancellationToken:CancellationToken -> Task
public function RefreshAsync(
refreshMode : RefreshMode,
collection : IEnumerable,
cancellationToken : CancellationToken
) : Task
参数
- refreshMode
类型:System.Data.Entity.Core.Objects.RefreshMode
一个 RefreshMode 值,指示是否使用数据库中的属性值重写对象上下文中的属性更改。
- collection
类型:System.Collections.IEnumerable
要刷新的对象的 IEnumerable 集合。
- cancellationToken
类型:System.Threading.CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回值
类型:System.Threading.Tasks.Task
表示异步操作的任务。
异常
例外 | 条件 |
---|---|
ArgumentNullException | collection 为 null。 |
ArgumentOutOfRangeException | refreshMode 无效。 |
ArgumentException | collection 为空或对象未附加到上下文。 |
备注
不支持对同一上下文实例执行多个活动操作。 使用“await”以确保在对此上下文调用另一个方法前完成了所有异步操作。