Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dbcontext does not contain a definition for 'Refresh'

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.

like image 461
user1014901 Avatar asked Nov 01 '12 13:11

user1014901


2 Answers

DbContext does indeed not have a Refresh() method.

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.

like image 185
Henk Holterman Avatar answered Sep 25 '22 13:09

Henk Holterman


LINQ-to-SQL has a confusingly similar DataContext class, that has this method.

Entity Framework: does not.

like image 36
Marc Gravell Avatar answered Sep 22 '22 13:09

Marc Gravell