dbcontext 不包含“刷新"的定义

dbcontext does not contain a definition for #39;Refresh#39;(dbcontext 不包含“刷新的定义)
本文介绍了dbcontext 不包含“刷新"的定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我首先使用实体​​框架代码,但出现以下编译错误.dbcontext 不包含刷新"的定义.我见过很多使用 Refresh 方法的例子.但是当我将 Refresh 方法添加到我的 dbcontext 时,我得到了一个编译错误.我正在使用以下命名空间.

I'm working with the entity framework code first and am getting the following compilation error. dbcontext does not contain a definition for 'Refresh'. I have seen many examples where the Refresh method is being used. But when i add the Refresh method to my dbcontext I get a complilation error. I'm using the following namespaces.

using System.Data;
using System.Data.Entity;
using System.Data.Linq;

我错过了一个吗?我试图查找它,但没有找到命名空间.

Am I missing one? I tried to look it up but did not find the namespace.

推荐答案

DbContext 确实没有 Refresh() 方法.

DbContext does indeed not have a Refresh() method.

您看到的示例可能使用 ObjectContext.Refresh().

The examples you saw were probably using ObjectContext.Refresh().

你可以从另一个得到一个:

You can get one from the other:

 db = new MyDbContext())
 ...   
 var ctx = ((IObjectContextAdapter)db).ObjectContext;
 ctx.Refresh();

这个问题有更多关于细节和差异的信息.

This question has more about the details and differences.

这篇关于dbcontext 不包含“刷新"的定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)