Tagged Questions

A tag for ADO.NET Entity Framework 4.x, itself an object-relational mapping for the .NET framework.

learn more… | top users | synonyms (2)

93
votes
9answers
17k views

Entity Framework 4 / POCO - Where to start?

I've been programming for a while and have used LINQ-To-SQL and LINQ-To-Entities before (although when using entities it has been on a Entity/Table 1-1 relationship - ie not much different than L2SQL) ...
34
votes
1answer
7k views

Update relationships when saving changes of EF4 POCO objects

Entity Framework 4, POCO objects and ASP.Net MVC2. I have a many to many relationship, lets say between BlogPost and Tag entities. This means that in my T4 generated POCO BlogPost class I have: ...
27
votes
3answers
11k views

The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid

i have a one entity framework object and when i add it to my project, the connectionstring is add to app.config in connectionstring section, but when i want create new entitycontext and use this ...
27
votes
2answers
4k views

Unit testing with EF4 “Code First” and Repository

I am attempting to get a handle on Unit testing a very simple ASP.NET MVC test app I've built using the Code First approach in the latest EF4 CTP. I'm not very experience with Unit testing / mocking ...
22
votes
3answers
3k views

Entity Framework - Add Navigation Property Manually

I generated an Entity Framework Model (4.0) from my database. I did not design the database and do not have any control over the schema, but there are a few tables that do not have foreign key ...
21
votes
1answer
7k views

ADO.NET DbContext Generator vs. ADO.NET POCO Entity Generator

I am about to start implementing the data access infrastructure of a project that was architected with an approach to DDD (it's my first attempt on DDD, so be gentle ;-) ). I will be using Entity ...
20
votes
3answers
3k views

Self Tracking Entities vs POCO Entities

We are starting a new web based product in which we are planning to expose our business logic through WCF services. We will be using ASP.NET 4.0, C#, EF 4.0. In future we want to build iphone ...
20
votes
1answer
8k views

Is DbContext the same as DataContext?

I'm following a tutorial by Scott Gu that refers to a class named DbContext. I can't find it on any namespace on framework 4 and it seems to me it was renamed from CT4 DbContext to .net4 ...
19
votes
3answers
5k views

Entity Framework 4 CTP 4 / CTP 5 Generic Repository Pattern and Unit Testable

I'm playing with the latest Entity Framework CTP 5 release and building a simple asp.net MVC blog where I just have two tables: Post and Comments. This is done entirely in POCO, I just need help on ...
17
votes
2answers
323 views

Entity Framework: Insists on adding new entity in many-to-many instead of re-using existing FK

I have got a many to many relationship, briefly Cases -----< CaseSubjectRelationships >------ CaseSubjects More fully: Cases(ID, CaseTypeID, .......) CaseSubjects(ID, DisplayName, CRMSPIN) ...
17
votes
3answers
474 views

Reducing Repositories to Aggregate Roots

I currently have a repository for just about every table in the database and would like to further align myself with DDD by reducing them to aggregate roots only. Let’s assume that I have the ...
17
votes
2answers
7k views

Entity Framework 4 - AddObject vs Attach

I have been working with Entity Framework 4 recently, and am slightly confused as to when to use ObjectSet.Attach, and ObjectSet.AddObject. From my understanding: Use "Attach" when an Entity ...
16
votes
4answers
716 views

How do I correctly profile Entity Framework?

What is the minimal amount of code I can write to get a single callback from EF 4.1 that provides the following: OnSQLExecuted(DbCommand cmd, DateTime start, double durationMS, string stacktrace) ...
16
votes
1answer
527 views

Cancelling an Entity Framework Query

I'm in the process of writing a query manager for a WinForms application that, among other things, needs to be able to deliver real-time search results to the user as they're entering a query (think ...
15
votes
3answers
5k views

Using MySql with Entity Framework 4 and the Code-First Development CTP

I thought I'd experiment a bit with Scott Guthrie's latest post on code-first dev with Entity Framework 4. Instead of using Sql Server, I'm trying to use MySql. Here are the relevant parts of my ...
15
votes
2answers
1k views

Dump Linq-To-Sql now that Entity Framework 4.0 has been released?

The relative simplicity of Linq-To-Sql as well as all the criticism leveled at version 1 of Entity Framework (especially, the vote of no confidence) convinced me to go with Linq-To-Sql "for the time ...
14
votes
1answer
377 views

Seemingly infinite stack trace in EF 4.0 and poor query performance under load

On a large EF 4.0 model (700+ entities), we are getting poor performance on System.Data.Objects.ObjectContext.CreateObjectSet(string). The call to this is triggered by a query like ...
14
votes
1answer
886 views

MvcMiniProfiler on EF 4.1 Code-First project doesn't profile SQL

I have version 1.6 of the MvcMiniProfiler referenced (via Nuget) and have set everything up as described on the project homepage at http://code.google.com/p/mvc-mini-profiler/. I have the following ...
14
votes
1answer
1k views

EF POCO code only VS EF POCO with Entity Data Model

The ability to separate domain objects completely from any kind of persistance code makes systems much more extensible and maintainable. Testing is made much easier when business logic can be tested ...
14
votes
2answers
1k views

What effect do the different EF 4 SaveOptions have on the ObjectContext?

I'm trying to resolve an error very similar to the one outlined here: InvalidOperationException when calling SaveChanges in .NET Entity framework It appears that the solution (which I have not tried ...
14
votes
5answers
1k views

Linq2SQL vs EF in .net Framework 4.0

So what's the verdict on these two products now? I can't seem to find anything regarding this issue SPECIFICALLY for VS2010/.net 4.0 Back in .net 3.5 days, most people believe Linq2SQL will be dead ...
14
votes
3answers
2k views

How not persist property EF4 code first?

How do I make non persisted properties using codefirst EF4? MS says there is a StoreIgnore Attribute, but I cannot find it. ...
13
votes
2answers
330 views

Why is entity still validated when it is gone?

Add a new entity to a TrackableCollection (context.Entities.Add(entity)) (EntityState = New) Without saving, delete the added entity from TrackableCollection (context.Entities.Remove(entity)) ...
13
votes
3answers
461 views

Entity Framework 4, inheriting vs extending?

What are the advantages/disadvantages to each method? I know I've read somewhere in either a book or on this site why using table inheritance is crappy for Entity Framework 4. For instance, why not ...
13
votes
1answer
2k views

Entity Framework 4: Does it make sense to create a single diagram for all entities?

I wrote a few assumptions regarding Entity Framework, then a few questions (so please correct where I am wrong). I am trying to use POCOs with EF 4. My assumptions: Only one data context can exist ...
13
votes
5answers
2k views

Entity Framework Code First: decimal precision

I'm experimenting with this code-first approach, but I'm find out now that a property of type System.Decimal gets mapped to a sql column of type decimal(18, 0). How do I set the precision of the ...
13
votes
3answers
7k views

Entity Framework 4 mapping fragment error when adding new entity scalar

I have an Entity Framework 4 model-first design. I create a first draft of my model in the designer and all was well. I compiled, generated database, etc. Later on I tried to add a string scalar ...
12
votes
1answer
804 views

Entity Framework 4 with MySQL connector 6.4.3 autogenerate tables causes “Column Length” exception

I am working with MySQL and the .Net EntityFramework 4 using the Code First approach. The mysql connector version is 6.4.3. When I run the project for the first time my initializer attempts to ...
12
votes
1answer
2k views

What effect(s) can the virtual keyword have in Entity Framework 4.1 POCO Code First?

The virtual keyword has an effect when used on properties in EF Code First. Can someone describe all its ramifications in different situations? For instance, I know it can control lazy loading -- if ...
12
votes
1answer
3k views

ASP.NET MVC 3 Application using Ninject, Entity Framework 4 Code-First CTP 5, Patterns

ive tried to build some base project with above technologies. I wanted maximum flexibility and testability so i tried to use patterns along the way to make this as a base for future projects. However, ...
12
votes
1answer
716 views

Entity Framework Code First lazy loading non navigation properties

I'm using the entity framework code first CTP4. Is it possible to lazy load non navigation properties like you can in NH 3. A common example would be having a table containing a binary column. I ...
12
votes
3answers
855 views

Too Many Left Outer Joins in Entity Framework 4?

I have a product entity, which has 0 or 1 "BestSeller" entities. For some reason when I say: db.Products.OrderBy(p => p.BestSeller.rating).ToList(); the SQL I get has an "extra" outer join ...
12
votes
7answers
11k views

EF Mapping and metadata information could not be found for EntityType Error

I have encountered an exception when I using Entity Framework 4.0 RC. My Entity Framework model is encapsulated in a private assembly whos name is Procurement.EFDataProvider and my POCO are inside of ...
11
votes
3answers
476 views

EntityFramework query manipulation, db provider wrapping, db expression trees

I'm trying to implement data localization logic for Entity Framework. So that if for example a query selects Title property, behind the scenes it should reference the column Title_enGB or Title_deCH ...
11
votes
2answers
2k views

EF Including Other Entities (Generic Repository pattern)

I am using the Generic Repository pattern on top of Entity Framework Code First. Everything was working fine until I needed to include more entities in a query. I got to include one entity ...
11
votes
6answers
6k views

Entity Framework 4 and SQL Compact 4: How to generate database?

I am developing an app with Entity Framework 4 and SQL Compact 4, using a Model First approach. I have created my EDM, and now I want to generate a SQL Compact 4.0 database to act as a data store for ...
11
votes
3answers
3k views

ASP.NET MVC / EF4 / POCO / Repository - How to Update Relationships?

I have a 1..* relationship between Review and Recommendations. The relevant portion of my model (which is also the POCO mapped by EF4): public class Review { public ...
11
votes
4answers
2k views

How does EF 4 code first handle schema changes in a production environment?

Traditionally I have always written my sql scripts by hand so they are nice and clean (I'm not a fan of the generated ones) and release to release, I provide a fresh install script and a migration ...
11
votes
3answers
1k views

In-Memory DB for Entity Framework 4

Does anyone know of a good in-memory DB that works well with .NET 4/EF 4? Specifically, I'm thinking of unit testing, such that each setup can easily create the DB, and populate it with default ...
11
votes
2answers
4k views

Entity Framework Code Only error: the model backing the context has changed since the database was created

I created a "Code Only" POCO for use against an existing database using Entity Framework 4 and the CTP4. When I run a query I get the error The model backing the 'xyzContext' context has changed ...
11
votes
1answer
2k views

How to map an Entity framework model to a table name dynamically

Using a code-first approach I'd like to map a single model to multiple table names dynamically. Currently I can do something like modelBuilder.Entity(Of Person)().MapSingleType().ToTable("Managers") ...
11
votes
3answers
2k views

Entity Framework 4 - Handling very large (1000+ tables) data models?

We've got a database with over 1000+ tables and would like to consider using EF4 for our data access layer, but I'm concerned about the practical realities of using it for such a large data model. ...
11
votes
5answers
655 views

Are there any good resources for developing Entity Framework 4 code-first?

I am trying to convert my model-first project to code-first, as I can see dealing with the models with the graphical designer will become hard. Unfortunately, with all my googling I can't find one ...
11
votes
1answer
5k views

Using sql date data type and EF4

I have a table w/ a sql date data type. When I look at the EDM markup, the storage element reflects this. The conceptual entity has a data type of DateTime (there doesn't appear to be a Date data ...
10
votes
3answers
295 views

How to implement Unit of Work that works with EF and NHibernate

I was working on a Unit of Work implementation that works both in Entity Framework 4.1 and NHibernate. Find below the skeleton of my implementation details IUnitOfWork definition public interface ...
10
votes
5answers
700 views

In EF 4.1 DbContext how to trace genrated SQL

I wonder how to trace genrated SQL like DataContext in LinqToSql. I also read articles about the solution of EFProviderWrapper on Jaroslaw Kowalski's blog, but it is based on ObjectContext, does not ...
10
votes
3answers
2k views

Code First Specify Database Name?

How do I tell EF what to name the database and where to put it? If there is no connection string in the Web.Config, it tries to put it in the local SQLEXPRESS Server, but I want to put it out on a ...
10
votes
1answer
2k views

Using System.ComponentModel.DataAnnotations with Entity Framework 4.0

I'm working with MVC3, and using Entity Framework 4.0 Entities as my model. So far, everything works great as far as using it as a model (all the crud operations/page generations work out of the ...
10
votes
2answers
491 views

Soft deletes, navigation properties in EF4 CTP5 POCO

Basically, I want to use soft deletes, but have the navgiation properties not show the soft deleted records. Are there any ways to intercept the navigation property queries on POCO objects in entity ...
10
votes
1answer
3k views

Entity Framework CTP5, code-first. Many to many with cascade delete

I have two entities (Customer and CustomerRole) and would like to declare many-to-many relationship between them. I can do using the following code: modelBuilder.Entity<CustomerRole>() ...

1 2 3 4 5 83