The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.

learn more… | top users | synonyms (2)

378
votes
11answers
123k views

Entity Framework vs LINQ to SQL

Now that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity framework. My question is this. When trying to decide between using the Entity Framework and ...
231
votes
23answers
98k views

MetadataException: Unable to load the specified metadata resource

All of a sudden I keep getting a MetadataException on instantiating my generated ObjectContext class. The connection string in App.Config looks correct - hasn't changed since last it worked - and I've ...
173
votes
7answers
43k views

EF 4.1 Code-first vs Model/Database-first

What are the pros & cons of using Entity Framework 4.1 Code-first over Model/Database-first with EDMX diagram? I'm trying to fully understand all the approaches to building data access layer ...
158
votes
10answers
77k views

Using MySQL with Entity Framework

Can't find anything relevant about Entity Framework/MySQL on Google so I'm hoping someone knows about it.
157
votes
6answers
36k views

SqlException from Entity Framework - New transaction is not allowed because there are other threads running in the session

I am currently getting this error: System.Data.SqlClient.SqlException: New transaction is not allowed because there are other threads running in the session. while running this code: public ...
154
votes
11answers
37k 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) ...
112
votes
1answer
69k views

Entity Framework - Using Transactions or SaveChanges(false) and AcceptAllChanges()?

I have been investigating transactions and it appears that they take care of themselves in EF as long as I pass false to SaveChanges() and then call AcceptAllChanges() if there are no errors: ...
107
votes
8answers
43k 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 ...
106
votes
2answers
30k views

Entity Framework and Connection Pooling

I've recently started to use the Entity Framework 4.0 in my .NET 4.0 application and am curious about a few things relating to pooling. Connection pooling as I know is managed by the ADO.NET data ...
103
votes
15answers
75k views

Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information

I have developed an application using Entity Framework, SQL Server 2000, VS 2008 and Enterprise Library. It works absolutely fine locally but when I deploy the project to our test environment, I am ...
103
votes
10answers
30k views

Entity Framework 4 vs NHibernate

A lot has been talked about Entity Framework first version on the web (also on stackoverflow) and it is clear that it was not a good choice when we already have better alternative like NHibernate. But ...
92
votes
6answers
39k views

Entity Framework VS LINQ to SQL VS ADO.NET with stored procedures? [closed]

How would you rate each of them in terms of: Performance Speed of development Neat, intuitive, maintainable code Flexibility Overall I like my SQL and so have always been a die-hard fan of ADO.NET ...
89
votes
6answers
20k views

Using SQL Server 2008 and SQL Server 2005 and date time

I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error. The version of SQL Server ...
77
votes
5answers
31k views

Entity Framework: There is already an open DataReader associated with this Command

I am using Entity Framework and occasionally i will get this error. EntityCommandExecutionException {"There is already an open DataReader associated with this Command which must be closed first."} ...
76
votes
9answers
31k views

Fastest Way of Inserting in Entity Framework

i'm looking for the fastest way of INSERTING in Entity Framework, i'm asking this because of the scenario where you have an active TransactionScope and the insertion is Huge (4000+), it can ...
64
votes
9answers
48k views

Can you use Microsoft Entity Framework with Oracle?

Is it possible to use Microsoft Entity Framework with Oracle database?
62
votes
11answers
48k views

“Items collection must be empty before using ItemsSource.”

I'm trying to get images to display in a WPF ListView styled like a WrapPanel as described in this old ATC Avalon Team article: How to Create a Custom View. When I try to populate the ListView with ...
61
votes
3answers
13k views

It has a DefiningQuery but no InsertFunction element… err

This thing is driving me crazy, and the error is quite meaningless to me: Unable to update the EntitySet 'TableB' because it has a DefiningQuery and no element exists in the element to support the ...
60
votes
3answers
8k views

What are good design practices when working with Entity Framework

This will apply mostly for an asp.net application where the data is not accessed via soa. Meaning that you get access to the objects loaded from the framework, not Transfer Objects, although some ...
59
votes
10answers
19k views

Unit testing with Entity Framework

I want to test my Entities that are built using Entity Framework. My concern is that using Entity Framework means directly working with data source. So any ideas how to unit testing Entity Framework ...
58
votes
10answers
19k views

Unique Constraint in Entity Framework Code First

Question Is it possible to define a unique constraint on a property using either the fluent syntax or an attribute? If not, what are the workarounds? I have a user class with a primary key, but I ...
56
votes
6answers
2k views

How to “warm-up” Entity Framework? When does it get “cold”?

No, the answer to my second question is not the winter. Preface: I've been doing a lot of research on Entity Framework recently and something that keeps bothering me is its performance when the ...
54
votes
6answers
22k views

How do I view the SQL generated by the entity framework?

How do I view the SQL generated by entity framework ? (In my particular case I'm using the mysql provider - if it matters)
53
votes
4answers
3k views

Entity Framework Vote of No Confidence - relevant in .NET 4?

I'm deciding on an ORM for a big project and was determined to go for ADO.NET Entity Framework, specifically its new version that ships with .NET 4. During my search for information on EF I stumbled ...
53
votes
3answers
12k views

Entity Framework Code First - two Foreign Keys from same table

I've just started using EF code first, so I'm total beginner in this topic. I wanted to create relations between Teams and Matches: 1 match = 2 teams (home, guest) and result. I thought It's easy to ...
52
votes
19answers
44k views

Entity Framework: “Store update, insert, or delete statement affected an unexpected number of rows (0).”

I am using Entity Framework to populate a grid control. It sometimes when I make updates I get the following error: Store update, insert, or delete statement affected an unexpected number of rows ...
52
votes
16answers
71k views

The underlying provider failed on Open

I was using .mdf for connect to DB and entityClient. Now I want to change the connection string so that there will be no .mdf Is this connectionString correct <connectionStrings> ...
52
votes
5answers
30k views

Does Entity Framework Code First support stored procedures?

I've watched several presentations of EF Code First and haven't seen how EFCF works with stored procedures. How can I declare a method that will use some sp? Can I pass an entity to a method that ...
51
votes
12answers
19k views

How can i query for null values in entity framework?

I want to execute a query like this var result = from entry in table where entry.something == null select entry; and get an IS NULL generated. Edited: ...
50
votes
4answers
12k views

Getting exact error type in from DbValidationException

I have the situation where I'm initializing my model in DatabaseInitializer() for EF 4.1 and get this annoying error "Validation failed for one or more entities. See 'EntityValidationErrors' property ...
50
votes
4answers
21k views

Unable to update the EntitySet - because it has a DefiningQuery and no <UpdateFunction> element exist

I am using Entity Framework 1 with .net 3.5. I am doing something simple like this: var RoomDetails = context.Rooms.ToList(); foreach (var Room in Rooms) { ...
49
votes
11answers
34k views

'Contains()' workaround using Linq to Entities?

I'm trying to create a query which uses a list of ids in the where clause, using the Silverlight ADO.Net Data Services client api (and therefore Linq To Entities). Does anyone know of a workaround to ...
48
votes
5answers
19k views

Entity framework PostgreSQL

Can someone tell me how can I get MS Entity Framework working with PostgreSQL. Also: How does Entity Framewok work with Mono? Could you please suggest other similar ORM tools which would run on Mono ...
47
votes
8answers
21k views

Bulk-deleting in LINQ to Entities

Is there any way to bulk-delete a bunch of objects matching a given query in LINQ or LINQ-to-Entities? The only references that I can find are outdated, and it seems silly to iterate over and ...
47
votes
3answers
23k views

SQL tracing LINQ to Entities

So, I would like to know oh to do a "full" tracing of Linq to Entities? In other words: I already know about the ToTraceString() method, but this only works on an ObjectQuery. I need it to work on ...
46
votes
5answers
22k views

The entity cannot be constructed in a LINQ to Entities query

There is an entity type called product that is generated by entity framework. I have writen this query public IQueryable<Product> GetProducts(int categoryID) { return from p in ...
46
votes
1answer
20k views

ADO.NET DbContext Generator vs. ADO.NET Poco Entity Generator (ObjectContext)

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 ...
45
votes
5answers
28k views

How to work with Enums in Entity Framework?

What is the best way to work with Enums in Entity Framework? Remarks: I'm using EF 3 and Firebird.
44
votes
3answers
107k views

Create a Dropdown List for MVC3 using Entity Framework (.edmx Model) & Razor Views && Insert A Database Record to Multiple Tables

After reading 100's of articles on here about how to create a DropDown List in MVC 3 with Razor Views, I could not find one that fit my case. So after Hours and Hours of searching for the answer I ...
44
votes
3answers
8k views

Code First: Independent associations vs. Foreign key associations?

I have a mental debate with myself every time I start working on a new project and I am designing my POCOs. I have seen many tutorials/code samples that seem to favor foreign key associations: ...
43
votes
12answers
36k views

How to compare only date components from DateTime in EF?

I am having two date values, one already stored in the database and the other selected by the user using DatePicker. The use case is to search for a particular date from the database. The value ...
43
votes
7answers
31k views

Best practices for using the Entity Framework with WPF DataBinding

I'm in the process of building my first real WPF application (i.e., the first intended to be used by someone besides me), and I'm still wrapping my head around the best way to do things in WPF. It's ...
43
votes
9answers
11k views

A list of Entity Framework providers for various databases

Which providers are there and your experience using them I would like to know about all possible native .NET Framework Entity Framework providers that are out there as well as their limitations ...
41
votes
3answers
37k views

Entity Framework - “Unable to create a constant value of type 'Closure type'…” error

Why do I get the error "Unable to create a constant value of type 'Closure type'. Only primitive types (for instance Int32, String and Guid) are supported in this context." when I try to enumerate the ...
40
votes
5answers
15k views

ADO.NET Entity Framework: Update Wizard will not add tables

I added a new ADO.Net Entity Data Model into my project and used the Update Wizard to add tables into the model. Five of the selected tables were added to the design surface. Two other tables will ...
38
votes
5answers
17k views

How to pass parameters to the DbContext.Database.ExecuteSqlCommand method?

Let's just suppose I have a valid need for directly executing a sql command in Entity Framework. I am having trouble figuring out how to use parameters in my sql statement. The following example (not ...
38
votes
6answers
22k views

Entity Framework and SQL Server View

For several reasons that I don't have the liberty to talk about, we are defining a view on our Sql Server 2005 database like so: CREATE VIEW [dbo].[MeterProvingStatisticsPoint] AS SELECT CAST(0 ...
38
votes
3answers
5k views

Code first DbMigrator causes error when building from different machines

We have a project under SCM. When I build it from my machine and publish to a remote server via msdeploy, everything works fine. When my colleague tries the same thing with the same project, freshly ...
37
votes
4answers
12k views

ASP.NET MVC3 and Entity Framework Code first architecture

My previous question made me think again about layers, repository, dependency injection and architectural stuff like this. My architecture now looks like this: I am using EF code first, so I just ...
37
votes
9answers
29k views

ADO.NET Entity Framework and identity columns

Is the Entity Framework aware of identity columns? I am using SQL Server 2005 Express Edition and have several tables where the primary key is an identity column. when I use these tables to create ...

1 2 3 4 5 502