Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
10k views

ASP.Net Entity Framework, objectcontext error

I'm building a 4 layered ASP.Net web application. The layers are: Data Layer Entity Layer Business Layer UI Layer The entity layer has my data model classes and is built from my entity data model ...
6
votes
1answer
318 views

3 methods for adding a “Product” through Entity Framework. What's the difference?

Reading this MSDN article titled "Working with ObjectSet (Entity Framework)" It shows two examples on how to add a Product.. one for 3.5 and another for 4.0. ...
5
votes
3answers
695 views

C# Entity Framework 4 Navigation properties causing slow performance on commit

I apologize for the lack of detail in this question - the first thing I need help on is knowing where to look to find more detail. I have a problem with enity framework 4 navigation properties ...
5
votes
3answers
5k views

Self Tracking Entities - AcceptChanges cannot continue because the object's key values conflict with another object in the ObjectStateManager

I've been stuck with this problem for over a week now. Hopefully some one can point me in the right direction. I start with a brief description of my schema. Asset 1--->1 Address *-->1 Area *-->1 ...
4
votes
1answer
479 views

C# Entity Framework using only one ObjectContext per HttpContext

In ASP.NET MVC 2, using Entity Framework 4, I'm getting this error "An entity object cannot be referenced by multiple instances of IEntityChangeTracker". A search of SO shows that it is probably ...
4
votes
3answers
2k views

EF4 - possible to mock ObjectContext for unit testing?

Can it be done without using TypeMock Islolator? I've found a few suggestions online such as passing in a metadata only connection string, however nothing I've come across besides TypeMock seems to ...
3
votes
1answer
64 views

Does every RIA query creates a different EF Object context?

I am using EF4/RIA combo in a Silverlight application. I have multiple service methods in my DomainService. One of the methods fetches some data from the database and then modifies the objects' ...
3
votes
1answer
166 views

Entity Framework 4 - How is ObjectContext.Refresh() supposed to work?

When I call Refresh using RefreshMode.StoreWins on an entity that is in my context and the values in the database are different than what the entity currently holds, is my entity supposed to update ...
3
votes
1answer
189 views

Why is this throwing a NULL value exception?

For some reason I am getting the following error at the db.SaveChanges(); instruction: Cannot insert the value NULL into column 'UserId', table 'XXXXXXXXX_Dev.dbo.Portfolios'; column does not allow ...
3
votes
1answer
326 views

Are there DbContext functions not available in ObjectContext?

Microsoft has an introduction article describing DbContext features. Some of them, like filtering related entities I hadn't seen in ObjectContext. Is that functionality really new for DbContext and ...
3
votes
1answer
391 views

MVC 3 - The ObjectContext instance has been disposed and can no longer be used for operations that require a connection

I'm very new to C# and MVC in general and I've been creating my own little blog site as a test project. Although most things are working up to this point, I have had problems selecting multiple ...
3
votes
3answers
496 views

What's the fastest way to get an ObjectContext reference from an entity object?

I'm creating extensions for my EntityFramework objects as described in How to: Customize Generated Data Objects but in some of those extensions I need to get the instance's ObjectContext to look up ...
3
votes
2answers
905 views

C#/EF and the Repository Pattern: Where to put the ObjectContext in a solution with multiple repositories?

I have multiple repositories in my application. Where should I put the ObjectContext? Right now, I have a reference like ObjectContext ctx; in every repository. What is the smartest and safest way ...
3
votes
2answers
418 views

Execute a SQL stored procedure before every query generated by EntityFramework

I need to execute a SQL stored procedure every time before I query my ObjectContext. What I want to achieve is setting the CONTEXT_INFO to a value which will be later on used with most of my queries. ...
3
votes
1answer
452 views

EF4 DAL design and the ObjectContext: Argument with co-worker

I work with a senior developer who is a guru .NET architect. We have had many constructive arguments over the last 6+ months and generally I concede defeat in most of our discussions. I have learned ...
3
votes
3answers
814 views

IQueryable Repository with StructureMap (IoC) - How do i Implement IDisposable?

If i have the following Repository: public IQueryable<User> Users() { var db = new SqlDataContext(); return db.Users; } I understand that the connection is opened only when the query ...
3
votes
1answer
1k views

How to convert a DataSet object into an ObjectContext (Entity Framework) object on the fly?

I have an existing SQL Server database, where I store data from large specific log files (often 100 MB and more), one per database. After some analysis, the database is deleted again. From the ...
2
votes
2answers
109 views

Managing Entity Framework ObjectContext in ASP.NET

I'm using the Entity Framework for an ASP.NET Web Forms application and I'm wondering how I should deal with ObjectContext and it's lifetime. For example, I have an InviteService class that manages ...
2
votes
1answer
72 views

EF4 - is it possible to see which ObjectContext is tracking a particular Entity?

The title just about says it all. I'm trying to solve a mystery I'm having attempting to use AutoMapper with MVC 2 and EF4. Specifically, I keep getting an exception telling me that some specific ...
2
votes
1answer
735 views

Using Both ObjectContext and DbContext

Scenario: Trying to extract and rearange information from one database to an other. DB A has some data I wan't to get. I wan't to store it on DB B in a slightly different structure. DB A I get using ...
2
votes
1answer
381 views

How to bind EF Code First DbContext to an Asp.Net DataSource?

I've created the following Context to be used with Entity Framework Code First: public class Context : DbContext { public DbSet<Animal> Animals { get; set; } } Now I would ...
2
votes
1answer
218 views

ObjectContext instance per http request disposed after 1 query execution

I'm considering putting the ObjectContext inside HttpContext.Current so that all logic in the same request can access to it without having to open/destroy each time. In ObjectContextManager class i ...
2
votes
1answer
282 views

Multi-Threaded SubQueries using Entity Framework throws errors

I have been trying to update the performance of my code in regards to database queries. The problem I am currently running into is that I cant seem to find a way to get a new context for each ...
2
votes
1answer
464 views

EF4 ObjectContext vs NHibernate Session

I'm trying to learn some NHibernate after diving into EF4. Is the equivalent of the EF4 ObjectContext (or DbContext) the NHibernate Session? Specifically, in EF4, you derive from ObjectContext (or ...
2
votes
2answers
309 views

Make sure Entity framework always reads from database?

I have this applikation that is actually two applications, a webapplication and a console application. The console application is used as a scheduled task on the windows machine and is executed 3 ...
2
votes
2answers
278 views

How do I query navigation properites using linq to sql and ef

I am trying to strongly type a query for 3 ef objects using linq to sql. There are one-to-many relationships with product and category. My classes contain navigation properties and look like this. ...
2
votes
2answers
361 views

Attach additional ObjectSets to ObjectContext from separate project

I hope this makes sense. I have a ASP.NET web application that uses Entity Framework. I have added a couple of custom tables to the db and created a separate project to handle the CRUD operations ...
2
votes
2answers
954 views

ObjectContext.SaveChanges() violates primary key, throws UpdateException?

Paraphrasing from this MSDN documentation ... An INSERT statement is generated by the Entity Framework and executed on the data source when SaveChanges is called on the ObjectContext. ...
1
vote
1answer
31 views

Where should I instantiate the Entity Framework's ObjectContext in a 3-tier applicaiton

I have a 3-tier web application wit ha bunch of simple forms. One to list records, one to edit a single record, etc. The works. I have a DataLayer where my EDMX is. I have an App Layer where my POCOs ...
1
vote
2answers
76 views

Using DbContext and Database First in EF 4.1

I have started working on a new project and am switching from LinqToSQL to EF 4.1 as my ORM. I already have a database set up to work with and so am going with the database first approach. By default ...
1
vote
1answer
58 views

Why does Entity Framework automatically use the ObjectContext instead of the DbContext when mapping database tables using ADO.NET Entity datamodel

I am following the database approach first; I have created the tables in my SQL Server 2008 database, then I map those tables to Entity Framework classes using an ADO.NET Entity Data Model. But when I ...
1
vote
3answers
46 views

How to delete a EntityObject, that belongs to a Collection of EntityObjects, from the ObjectContext?

I would like to perform a delete on my ObjectContext. This is my code: var tempList = someEntityObject.SomeCollectionOfEntityObject; foreach (var item in tempList) { ...
1
vote
1answer
20 views

What library does ObjectContext come from in VB5?

First of all, let me myself make the obligatory snarky comment about having to maintain VB5 code: yes, it's pitiful, but can we please just cut to the chase? Thanks. I am having to revisit some VERY ...
1
vote
2answers
85 views

Entity Framework Detach an entity and the related entities gone

When I use Entity Framework, I want to query out a record in a context and add it to another context with the same schema, after query out the record, I detach it from the context, but the related ...
1
vote
2answers
283 views

Convert Library from ObjectContext to DbCOntext

I have a library (based on code found in an old blog post) that allows me to very easily wrap a facade around my data access using Entity Framework. It uses ObjectContext and has performed well enough ...
1
vote
1answer
94 views

Entity Framework telling me an object is attached when it isn't - why?

I have an object I want to update in the database. I'm new to EF but have done a fair bit of reading. Clearly my approach is wrong, but I don't understand why. FYI the Context referenced throughout is ...
1
vote
0answers
109 views

How to load navigation properties using POCO Entities in EF by having managed lifespan ObjectContext?

I am following the same article as follows Managing Entity Framework ObjectContext lifespan. I generate the Entities from my EDMX file by using "POCO Entity Generator" tool and put all the Entities ...
1
vote
1answer
142 views

unable to query EntityFramework shared dbcontext reliably

I'm trying to share a simple DbContext with 4 DbSets among multiple repositories, each of my repositories inherit from this base class public class CodeFirstRepository : IDisposable { ...
1
vote
1answer
438 views

Does ObjectContext.Connection.BeginTransaction() use MSDTC?

I want confirm if the Transaction that Entity Framework's ObjectContext.Connection.BeginTransaction() method returns uses the support of MSDTC (Microsoft Distributed Transaction Coordinator) or not? ...
1
vote
1answer
73 views

Reliable way to run code against Entities just Inserted with ObjectContext?

I have some code that needs to run every time an Entity is Inserted into my database, the problem is that this code requires the Entity PrimaryKey. I have found that I can get the Entities from the ...
1
vote
0answers
171 views

Passing ObjectContext EF 4.0

I have two classes Queries and ContactRepository. public static class Queries { public static Contact GetContactByName(CEntities context, string name) { return ...
1
vote
1answer
497 views

Releasing ObjectContext while using StructureMap

I've been using StructureMap to inject ObjectContext (entities) into my repositories along with lazy-loaded POCO classes. This is my Structuremap registration. ...
1
vote
1answer
548 views

Silverlight 4 Ria Services and multiple threads

I have a very long running query that takes too long to keep my client connected. I want to make a call into my DomainService, create a new worker thread, then return from the service so that my ...
1
vote
1answer
542 views

Correct way to pass Entity objects between layers?

I am just learning the Entity Framework and have made some good progress on incorporating it with my layered code structure. I have 2 visual layers, a business layer and a data access layer. My ...
1
vote
1answer
288 views

Multiple Entity Framework models and the objectcontext

I have a asp.net web application that uses Entity Framework. The application data layer uses a method outlined by Jordan Van Gogh found here. In a nutshell, this method uses one shared objectcontext ...
1
vote
1answer
1k views

EF 4: Problems understanding DetectChanges when using POCO (no self tracking ObjectContext)

I wonder if anyone can help me? I am having problems understanding why i need to issues DetectChanges on my POCO (non proxy) entities. Of course i have this line to ensure that proxies are not ...
1
vote
1answer
523 views

Merge Function In Entity FrameWork?

when i use NHibernate i can find Merg function in session which do that : * if there is a persistent instance with the same identifier currently associated with the session, copy the state of the ...
1
vote
1answer
481 views

How Can i change Tracking Information of object from ObjectContext to another?

I have an object which is added to an objectContext .. after some operation i need to pass it to another objectcontext of the same database but i always face this message : An entity object cannot ...
1
vote
1answer
277 views

MVC ASP.NET, ObjectContext and Ajax. Weird Behaviour

i've been creating a web application in mvc asp.net. I have three different project/solutions: One solution contains the model in EF (DAL) and all the methods to add, update, delete and query the ...
0
votes
2answers
29 views

How to start using EntityFramework 4.1 (or 4.3 currently)

I've installed EntityFramework through nuget (should I do this for every project? Or can I just reference the assemblies? Where are they 'installed'? Sorry new to nuget) I add a new "Ado.NET Entity ...

1 2 3