Core class within Entity Framework. Provides the methods to retrieve, query and manipulate entities within the entity model.

learn more… | top users | synonyms

0
votes
1answer
23 views

Entity Framework : ObjectContext safety

I'm developing n-tier application that consists of 4 web applications and one windows service and I would like to have one instance of ObjectContext per http request or one per thread. The question ...
1
vote
1answer
70 views

Entity Framework Object Context per request in ASP.NET? [closed]

Is it considered a good practice to use a single ObjectContext per request? I read these objects should be short lived and are not extremely costly to instantiate but does this make the case appealing ...
1
vote
0answers
28 views

ObjectContext inside another ObjectContext

I am working on a component factory system where ObjectContexts are automatically created depending upon some configuration rules. Each time a method is called, the component factory decides where to ...
0
votes
0answers
28 views

Error when using Entity Framework 5 DbContext and ObjectContext in the same project

I am creating a Generic Repository for using on both DbContext and ObjectContext. Then, first I added an EF DbContext for test database and wrote the unit test for using it with DbContext, all ...
1
vote
0answers
47 views

.Net Framework 4.5. Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction

I´m working on a distributed transaction issue that occurs using NET Framework 4.5. If I try to execute the app on a machine (and Dev Server also) using Framework 4.0 the components work fine. ...
2
votes
1answer
27 views

Why doesn't ObjectContext.DetectChanges reset State to Unchanged?

I'm having a little trouble understanding what DetectChanges does in this code (using EF 4.3): using (var context =new BreakAwayContext()) { var f = context.Destinations.First(); ...
0
votes
1answer
36 views

Insertion multiple records in the same objectContext

I'm having some trouble when I try to insert data using the same objectContext. My problem is, the order that the Entity read my code is not the order that I "Add" it. Example: EntityAB has ...
0
votes
0answers
33 views

EF ObjectContext with WCF InstanceContextMode=InstanceContextMode.Single

Steven Sanderson talks about thread safety issue of the ObjectContext in this article. Asp.net applications which uses services pass the httpcontext all the way to the lower level data access layer ...
0
votes
0answers
52 views

Exception when using static dbcontext with entitydatasource with onContextCreating

I want to share a single dbcontext across a session. I understand there are a number of issues with using shared, cached Dbcontexts. So I create a global dbcontext and save it in a static class ...
0
votes
0answers
8 views

MetaDataException using ObjectContext but not using DbContext

I am trying to use the EF with Poco as described in http://msdn.microsoft.com/en-us/library/vstudio/bb738471(v=vs.100).aspx. In my sample I have a DbContext generated using Visual Studio and I am ...
0
votes
0answers
54 views

New ObjectContext throws ObjectStateManager exception

I'm Using WPF, .NET 4.0, and EF5. I want to keep the opened ObjectContexts on a minimum, so i use every object context in a using block. Regardless, when I execute the following code, the object ...
0
votes
1answer
67 views

How to tell if I use ObjectContext API or DbContext API?

I've got two projects with different database models (though the same Entity Framework Version 5.0.0). Their queries look like the following: Project 1: if (_db.Entry(customer).State == ...
0
votes
0answers
51 views

Datagridview doesn't update

I work on windows form with entity framework 5. I have a datagridview to record new sales and a save button to save changes on my entities. But before saving the entities, I create some new stock ...
1
vote
1answer
46 views

EntityFramework: about OptimisticConcurrencyException

I have two related tables: dbo.resources and dbo.reservation; dbo.resources has a foreign key that points to dbo.reservation with the ON DELETE SET NULL option. I also have an "after" trigger on ...
0
votes
0answers
25 views

Entity Framework 4: How can I see the current ObjectContexts in Visual Studio

I'm using VS2010 and EF4. Background: I'm getting "An entity object cannot be referenced by multiple instances of IEntityChangeTracker" exceptions so I'm presuming that there are multiple ...
1
vote
2answers
205 views

How to have Entity Framework navigation property query filter in database by default?

the dbcontext api seems to set navigation properties to ICollections (for the * ends of associations). The normal way to get queryable objects (like if you wanted a count) seems to be int count = ...
0
votes
1answer
70 views

ObjectContext in ViewModel (EF + MVVM)

I'm currently writing my first MVVM application which uses EntityFramework for data access. The Application relies heavly on the underlying database and has to add new Data to the DB in many cases. ...
2
votes
2answers
152 views

Entity framework - objectcontext disposed exception

I've been debugging this program without any result, and unfortunately I can't see the root of the problem. I get this exception: The ObjectContext instance has been disposed and can no longer be used ...
4
votes
1answer
202 views

Entity framework ObjectContext share - pros and cons

In my project I use entity framework 4.0 as ORM to persist data in a SQL Server. My project is a ribbon from application with a grid view and navigation tree in the main form with ribbon panel on ...
0
votes
1answer
86 views

ObjectContext.Translate - Use different property names

I am using Entity Framework and calling a stored procedure as described here: http://msdn.microsoft.com/en-us/data/jj691402.aspx under "Accessing Multiple Result Sets with Code" After executing the ...
0
votes
3answers
365 views

Entity Framework Get Entity By Primary Key

Some time ago, I wanted to implement a method that was able to determine whether do an insert or an update on a given entity, so I didn't have to expose "Insert" and "Update" methods, but just a ...
0
votes
1answer
95 views

How to prevent lazy loading of entities that were already manually loaded when navigating a property in EntityFramework

Background: I am using EF4 and ObjectContext. To optimze retrieval of complex object hierarchies, I manually execute database queries and then use ObjectContext.Translatey<T>(DataReader, ...
3
votes
1answer
92 views

ObjectContext.CreateDatabase() creates additional tables that are not in the .edmx model

I have the following code: HorekoEntities db = new HorekoEntities(Utils.GetDbConnStrByName(db_name)); if (!db.DatabaseExists()) { db.CreateDatabase(); } which creates a database with tables ...
0
votes
2answers
171 views

Entity Framework - ObjectContext or DbContext when AuditLog and CreatedOn/ModifiedOn and DB Modeling Team

Which one to choose either ObjectContext or DbContext, when the requirements are, Data Modeling done by Modeler and provides the DEV team a sql script. Due to this we have opted Model First. Is this ...
0
votes
1answer
369 views

Get DBContext from ObjectContext

I'm using the latest versions of ASP.NET MVC, SQL Server, and Entity Framework. I am not using code first. I can easily create an object context using the class generated by my EDMX file. But is ...
0
votes
1answer
41 views

Create two entities with the second one depending on the first in entity framework

i have a class library in c# and entity framework that has a payment model. My payment model have one table called Payment, and then another table called PaymentSolid, this last one saves the solid ...
1
vote
0answers
92 views

Get object context of a cached entity

I want to manually create entity relationships with objects taken from cache. Car car = Cache.GetCarById(1); // takes this from cache SteeringWheel steeringWheel = Cache.GetSteeringWheelById(1); ...
0
votes
1answer
75 views

What Provider DLL does the EntityConnection use to create its StoreConnection

I setup an object context like this: public MyObjectContext(....) : this(contextName, new EntityConnection(connectionString)) The connection string is a connection string to an Oracle database. I ...
0
votes
1answer
399 views

Entity framework object context saves new entities that were not added

I have been working with Entity Framework (VS2010 Framework 4.0) in my proyect. I had some trouble with using a different object context per form. What I did then, was to create a object context in ...
1
vote
1answer
368 views

Compiled Query no implicit reference conversion to ObjectContext

I'm creating a delegate to retrieve all album records in the database. I've used this same way in another project, but for some reason I'm getting an error this time. Have I missed a step? I'm not ...
1
vote
3answers
741 views

Entity Framework - Where is my Object Context?

Ok, I'm obviously missing something very basic. I'm very new to Entity Framework. I want to call stored procedures without importing them, so I was planning on using ExecuteStoreQuery(). According ...
0
votes
1answer
75 views

ObjectContext from DataSet

I'm trying to compile a linq query. Func<ImportNewPermits_Enviance, String, EnumerableRowCollection<ImportNewPermits_Enviance._History_for_Permit__POI__Data_Row>> s_compiled = ...
0
votes
0answers
73 views

Calling Function Import ends with System.Data.EntityCommandCompilationException

I'm trying to call an imported function with the following code and it throws an exception : ObjectContext.ExecuteFunction<Result>("func", conditionParameter); This is because the provider ...
1
vote
1answer
48 views

EF Custom Result Set Mapping

I am wondering if there is a way, using Entity Framework, of mapping results from arbitrary sql, like ResultSetMapping in Doctrine. I know i can create a configuration class doing the mapping but that ...
1
vote
2answers
129 views

How to delete a list of object using ObjectContext?

Say you have code like this . using (CustomerContext db = new CustomerContext()) { var foundCustList=db.Customers.Where(c=>c.State=='-1').ToList();//Find all the customer which State is -1 ...
0
votes
0answers
47 views

Losing ability to update after recreating context

I have this design problem. I have a bulk update/insert feature built into my EF generic repository. Two things can happen within that feature: I'm just adding the entity to the context and ...
0
votes
0answers
74 views

EF invalid object name

I have an EF ObjectContext and sync my local SQL database with an Azure SQL database via SQL Data sync. When i call the SaveChanges() function from my context i get the error: Invalid object name ...
0
votes
2answers
62 views

Detaching an entity and saving the context on another attempt

I am trying to handle a situation in a bulk insert process where there may be entities with the same primary key, which of course is going to make SaveChanges throw an exception. Here's what I have: ...
1
vote
1answer
179 views

Calling SP from EF using same transaction of SaveChanges

Does someone knows how to call a StoredProc using the same transaction of an objectContext SaveChanges method (EntityFramework 5)? The goal is to apply the objects changes and call a stored Proc that ...
0
votes
0answers
55 views

How can I intercept the retrieve of EF POCO object?

I have some code which encrypts and decrypts data using EF POCO. To implement this I intercepted the Saving Changes and ObjectMaterialized events and it works (most of the time). The issue I have is ...
1
vote
1answer
347 views

How to add entity-framework to console application (images are included)

I try to add entity-framework to console application: I press "add new item" and then then then I added code: class Program { static void Main(string[] args) { ...
1
vote
0answers
166 views

I can't save data using Entity Framework

I use this code to add one item to a SpareParts table in my database. try { Database1Entities _db = new Database1Entities(); SparePart sparePart = new SparePart(); ...
2
votes
1answer
156 views

sharing objectcontext in entity Framework for an MVC application

I am developing an ASP.NET MVC application (Microsoft .NET Framework Version 3.5 SP1 using Entity Framework1.0). I have about 30 tables in my MySQL database. So far I have created 10 Model classes. I ...
0
votes
0answers
345 views

EntityFramework and ont-to-many CRUD operations

I'm really trying hard to put everything on my project to work with the EF, but it's really getting difficult and sometimes it makes me wonder if it's really the smart move (to rely on EF against ...
0
votes
1answer
260 views

ContextCreating method in EntityDataSource cannot convert Entities to ObjectContext

Using EntityFramework, I have created an EntityDataModel (.edmx file) in App_Code\DAL. In the wizard, I named the entities 'DLGDBEntities'. I have a number of EntityDataSources in the .aspx where I've ...
0
votes
1answer
69 views

ObjectContext Error in Dev but Not when Published

Given the classes below, firing up the website in Visual Studio gives me the following error when home/index is called (this is actually the inner exception). A transport-level error has occurred ...
0
votes
0answers
53 views

Getting a reference of “current” ObjectContext inside an ASP.NET Dynamic Data application

This is the first time I use ASP.NET Dynamic Data, so excuse me if my question sounded stupid. Anyway, I need a way to access the ObjectContext instance the application uses to get and save data to ...
2
votes
2answers
588 views

How do I stop Entity Framework from generating BOTH ObjectContext and dbContext

Background Visual Studio 2012 NEW Model.EDMX file created in VS2012 Copied some of the EDMX xml from a previously created EDMX into the new one Problem / Question Now. The EDMX (TT transform, ...
2
votes
0answers
337 views

How to deal with LinqServerModeDataSource and data context?

I am trying to learn how to use LinqServerModeDataSource DevExpress control. The promise is that control will accept queryable (query), dynamically modify it, and pull from the database server only ...
0
votes
0answers
117 views

Complex type in POCO produces NullReferenceException in DetectChanges/SaveChanges

I have a strange behaviour when trying to save an entity in EF 4.0. Just consider a simple complex type with one String-Property. Then I have an entity POCO-Class (actually an STE, but that's not the ...

1 2 3 4