This tag is for the ADO.NET Entity Framework 4.1, the first release of Entity Framework to ship separately from the .NET framework. It builds upon the core Entity Framework included in .NET 4.0 and was released to the public in March 2011.
58
votes
3answers
14k 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 ...
53
votes
2answers
9k views
Generic Repository With EF 4.1 what is the point
As i dig deeper in to the DbContext, DbSet and associated interfaces, I am wondering why you would need to implement a seperate "Generic" Repository around these implementations?
It looks like ...
29
votes
2answers
1k views
DbContext ChangeTracking kills performance?
I am in the process of upgrading an application from EF1 to EF4.1
I created a DbContext and a set of POCOs using the "ADO.NET DbContext Generator" templates.
When I query the generated DbContext the ...
23
votes
1answer
8k 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 ...
17
votes
2answers
3k 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 ...
15
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 ...
14
votes
3answers
4k 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 ...
13
votes
2answers
5k views
Enums with EF code-first - standard method to seeding DB and then using?
Is there a standard way to using Enums in EF code-first? There seems to be some examples making use of a wrapper class for the enum.
However, I would like to be able to define the enum and have the ...
13
votes
3answers
5k views
EF 4.1 Code First - map enum wrapper as complex type
I'm trying to build a generic solution to the problem of enums with EF 4.1. My solution is basically a generic version of How to fake enums in ef 4. The enum wrapper class works wonderfully in the ...
13
votes
3answers
3k 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 ...
12
votes
4answers
4k views
EF Model First or Code First Approach?
I know this question has been asked numerous times before as I’ve read quite a few posts on the topic about the pros and cons etc but I still can’t decide which approach is right for me. I’m very new ...
12
votes
1answer
3k views
StringLength vs MaxLength attributes ASP.NET MVC3 with EF 4.1 Code First
I'm new to ASP.NET MVC 3 and EF 4.1 and I have a question: what is the difference in behavior of [MaxLength] and [StringLength] attributes? As far as I can tell (with the exception that [MaxLength] ...
12
votes
2answers
4k views
Composite Key with EF 4.1 Code First
I am trying to figure out how to have a composite key using EF code First 4.1 RC.
Currently, I am using the [Key] Data Annotation, but I am unable to specify more than one key.
how would one specify ...
12
votes
1answer
3k views
Entity Framework Validation confusion - maximum string length of '128'
I'm faced with a confusing problem where in my Edit or Create action result methods, EF4 will throw a DbEntityValidationException with the inner message stating:
The field Body must be a string or
...
11
votes
2answers
782 views
Extremely slow performance using Code-First with Entity Framework 4.1 release
Our company is developing a new application, which has a somewhat large business data object at its core. We decided to try out Entity Framework with code first to abstract the database from the ...
11
votes
3answers
618 views
What is the best way to instantiate and dispose DbContext in MVC?
MVC 3 + EF 4.1
I'm choosing between two approaches to deal with DbContext:
Instantiate in Application_BeginRequest, put it into
HttpContext.Current.Items and dispose in Application_EndRequest.
...
11
votes
2answers
2k views
Generic Way to Check If Entity Exists In Entity Framework?
Similar to Best way to check if object exists in Entity Framework?
I'm looking for a generic way to check for an entity in a DbSet. Something like this, which doesn't work:
private DbContext ...
11
votes
1answer
3k views
Is RecreateDatabaseIfModelChanges available in WPF?
I'm trying out Entity Framework Code First. I can't seem to find the assembly/namespace to use for RecreateDatabaseIfModelChanges in WPF 4.0. Is this an ASP.NET-only feature? If not, what assembly ...
11
votes
3answers
2k views
Organizationally, where should I put common queries when using Entity Framework Code First?
I'm laying out a new data layer using EF 4.1 Code First, migrating from an older homebrew data layer.
I have set up two assemblies, one for my context and one for all the POCO code first classes.
...
10
votes
6answers
590 views
Entity Framework 4.1 The model backing the context has changed since the database was created, immediately after creating DB
I am working on a project which uses Entity Framework 4.1 for persisting our various objects to the database (code first).
I am testing in Visual Studio with a local SQL Express DB, and our Jenkins ...
10
votes
2answers
356 views
Entity Framework Performance Issue
I am running into an interesting performance issue with Entity Framework. I am using Code First.
Here is the structure of my entities:
A Book can have many Reviews.
A Review is associated with a ...
10
votes
2answers
2k views
Unit Testing DbContext
I've researched some information about techniques I could use to unit test a DbContext. I would like to add some in-memory data to the context so that my tests could run against it. I'm using ...
10
votes
3answers
356 views
Why the Left Outer join?
weird one. (Probably not weird, at all)
I have 3 objects, Employee, Rota and Department.
public class Employee
{
public int Id { get; set; }
public String Name { get; set; }
public ...
10
votes
1answer
1k views
Using mvc-mini-profiler
I'm trying to use the mvc-mini-profiler with EFCodeFirst I'm creating a DbProfiledConnection and passing it to the DbContext on construction as below. The application continues to work as expected by ...
10
votes
2answers
2k views
How can I prevent EF “The context cannot be used while the model is being created” errors?
Looking at my Elmah error logs, I am seeing a few InvalidOperationExceptions from Entity Framework that deal with:
The context cannot be used while the model is being created.
This is with the ...
10
votes
2answers
500 views
Interface and repository abstraction break subqueries in Entity Framework 4.1 DbContext API?
The goal:
I'm trying to use the new Entity Framework 4.1 DbContext API (using Database First with the new ADO.NET DbContext Generator for the POCO classes) and provide a layer of abstraction using ...
10
votes
1answer
1k views
Why is inserting entities in EF 4.1 so slow compared to ObjectContext?
Basically, I insert 35000 objects within one transaction:
using(var uow = new MyContext()){
for(int i = 1; i < 35000; i++) {
var o = new MyObject()...;
uow.MySet.Add(o);
}
...
10
votes
5answers
811 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
3k views
Entity Framework Code First - Why can't I update complex properties this way?
I'm working on a small sample project using Entity Framework 4.1 (code first). My classes look like this:
public class Context : DbContext
{
public IDbSet<Person> People { get; set; }
...
10
votes
5answers
17k views
EF 4.1 Code First and Existing Database and .NET Membership
I have a database called ApplicationName_Development running on SQL Server 2008 R2 Developer edition on my development box.
I added .NET membership tables to the database with no problem. When I ...
10
votes
1answer
2k views
Code First - Are Data Annotations or the Fluent API better?
Just wondering what is a better way to configure my model?
I like the Fluent API, because then my POCO's are not full of EF specific attributes.
Is there anything you can't do with the Fluent API ...
9
votes
2answers
282 views
Using the lambda Include method in a compiled LINQ query
I'm currently trying to optimize some of the LINQ queries in my program by precompiling them.
Some of these queries make extensive use of eager loading; here's an example of one:
public static ...
9
votes
2answers
536 views
EF 4.1 Code-first executes queries 3x slower than regular EF in my application
Forgive the length of this question. I felt it was necessary to include some detailed information about the problem. Most of the length is from screen shots. Please let me know if you need any ...
9
votes
4answers
7k views
EF 4.1 - Model Relationships
I'm trying to create a quick ASP.NET MVC 3 application using the RC version of EF 4.1. I have two models:
public class Race
{
public int RaceId { get; set; }
public string RaceName { get; ...
8
votes
2answers
179 views
Linq to Entities (EF 4.1): How to do a SQL LIKE with a wildcard in the middle ( '%term%term%')?
I want to search for this:
Post Cereal
and get this:
Post Honey Nut Cereal
where the wild cards would be the spaces.
I know I could do a SPLIT and a series of ANDs and Contains() and ...
8
votes
3answers
625 views
Entity Framework 4.1: How do I delete by object Id
I would like to know how to delete an object from Entity Framework 4.1 without first having to load the object from the database. I have found these other 2 answers on Stack Overflow, but they do not ...
8
votes
1answer
486 views
Why does EF 4.1 not support complex queries as well as linq-to-sql?
I am in the process of converting our internal web application from Linq-To-Sql to EF CodeFirst from an existing database. I have been getting annoyed with Linq-To-Sql's limitations more and more ...
8
votes
2answers
808 views
Entity Framework 4.1 for large number of tables (715)
Hi
I'm developing a data access layer for a database with over 700 tables. I created the model including all the tables, which generated a huge model. I then changed the model to use DBContext from ...
8
votes
1answer
2k views
Entity Framework 4.1 Code First approach to create many-to-many relation
I'm using the Silverlight 5 Beta SDK and the EntityFramework 4.1 in an Silverlight Application.
I'll try to create the two tables 'Author' and 'Book'. In SQL, there should be a third (join) table, ...
8
votes
2answers
8k views
How Should I Declare Foreign Key Relationships Using Code First Entity Framework (4.1) in MVC3?
I have been searching for resources on how to declare foreign key relationships and other constraints using code first EF 4.1 without much luck. Basically I am building the data model in code and ...
8
votes
2answers
3k views
Foreign keys in entity framework 4.1
I am working on Entity Framework 4.1 and using data annotations for foreign keys. I want to know how can we define one to many relationship between product and categories. I want to map category. ...
8
votes
1answer
2k views
EF 4.1, Code-First: Eager loading of cascading collections
If I have the following class model ...
public class A
{
public int AId { get; set; }
public ICollection<B> BCollection { get; set; }
}
public class B
{
public int BId { get; set; ...
8
votes
1answer
846 views
Entity Framework 4 - Mapping non-public properties with CTP5 (code first) in a persistence unaware context
I know the question already has a solution (eg. this question) but I really can't afford to attach the mapping logic in the same assembly where the domain (POCO classes) is.
Is there any other way?
...
7
votes
2answers
225 views
Using Foreign Key (FK) as Discriminator for Table-Per-Hierarchy (TPH)
[Q:] Is it possible to use a FK as a discriminator in EF and what workarounds have people come up with?
The scenario
EF Objects
public class List
{
public int Id { get; set; }
public ...
7
votes
1answer
366 views
Why does DbSet.Add work so slow?
The same topic was discussed here 8 months ago: How do I speed up DbSet.Add()?. There was no solution proposed other than using SqlBulkCopy which is not acceptable for us. I've decided to bring it up ...
7
votes
4answers
1k views
One DbContext per request in ASP.NET MVC (without IOC container)
Apologies if this has already been answered, but how do you guarantee one Entity Framework DbContext per request if you are not using an IOC container? (The answers I've come across so far deal with ...
7
votes
5answers
345 views
Entity Framework v4.1 LIKE
How do I have to build my query to result in an output SQL query like:
SELECT
[viewRegisters].[Id] AS [IdRegister]
WHERE Name LIKE '%a%bc'
OR
SELECT
[viewRegisters].[Id] AS [IdRegister]
WHERE Name ...
7
votes
2answers
449 views
Is DbContext thread safe?
I was wondering if the DbContext class is thread safe, I am assuming it's not, as I am currently executing paralell threads that access the DbContext in my application and I am getting a host of ...
7
votes
2answers
630 views
Convert this SQL to lambda for EF 4 Code first
I have this Sql statement
SELECT * FROM Game
INNER JOIN Series ON Series.Id = Game.SeriesId
INNER JOIN SeriesTeams ON SeriesTeams.SeriesId = Series.Id
INNER JOIN Team ON ...
7
votes
1answer
394 views
Explicit loading of grandchild collections in EF 4.1
Given the following model ...
public class Parent
{
public int Id { get; set; }
public ICollection<Child> Children { get; set; }
}
public class Child
{
public int Id { get; set; }
...