Tagged Questions
243
votes
10answers
78k 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 ...
100
votes
20answers
45k 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 connectionstring in App.Config looks correct - hasn't changed since last it worked - and I've ...
79
votes
7answers
20k 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 ...
40
votes
4answers
2k 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 ...
35
votes
2answers
9k 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 ...
32
votes
9answers
29k views
WPF: “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 ...
32
votes
4answers
13k 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 ...
30
votes
10answers
7k 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:
...
26
votes
9answers
5k 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 ...
26
votes
5answers
4k views
ASP.NET and Entity Framework in Layered Architecture - using Entity Framework for ORM only
I have an ASP.NET application that uses a layered architecture e.g. presentation layer, business logic layer, data access layer.
I don't want to the business layer to have to know anything about how ...
26
votes
7answers
4k views
When NOT to use the Entity Framework
I have been playing around with the EF to see what it can handle. Also many articles and posts explain the various scenarios in which the EF can be used, however if miss the "con" side somehow. Now my ...
25
votes
7answers
13k views
Using Entity Framework entities as business objects?
I'm using Entity Framework O/R mapper from Microsoft and using entity classes (generated classes that are mapped to DB objects) as a business objects.
Is this OK? Please state your cons or pros. What ...
23
votes
8answers
3k views
Do you think it's advantageous to switch to Entity Framework? [closed]
With LINQ to SQL most likely going to not get as much active development as Entity Framework do you think it's best to switch to Entity Framework?
I've personally found EF to be very clunky and hard ...
23
votes
8answers
17k 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 ...
22
votes
4answers
7k 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 ...
19
votes
7answers
651 views
Entity Framework 4.0: is it worthy now?
I've read a lot complains about Entity Framework in .NET 3.5 SP1, especially about its ineffectively generated SQL. Those complains had prevented me from studying Entity Framework.
Now Entity ...
18
votes
1answer
285 views
How to generate all my entities composed two tables for each entity via a T4 automation
I have a class library project for a data access layer that uses Entity Framework 4. My project needs a versioning concept. My database contains many tables that contain «Id» and «CreationDateTime». ...
18
votes
8answers
8k views
Validate data using DataAnnotations with WPF & Entity Framework?
Hello is thee any way to validate using Data Using DataAnnotations in WPF & Entity Framework?
18
votes
7answers
3k views
Anybody else regretting using Entity Framework?
I have a project that implemented Linq To SQL, and I was pretty happy with it. For quite awhile the biggest problem was just that the designer was buggy.
Unfortunately, my project now requires ...
18
votes
7answers
7k views
How to use Default column value from DataBase in Entity Framework?
I have a Date column in table which has default value or binding as getutcdate(). I want to use this in entity framework.On generating EDM I was able to find "Default Value " property at column level ...
16
votes
4answers
713 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
2answers
3k views
What is the purpose of self tracking entities?
I've been reading about self-tracking entities in .net and how they can be generated from a *.edmx file. The thing that I'm struggling to understand is what generating these entities gives you over ...
16
votes
3answers
743 views
Using BindingSource to bind to Nested Properties - or, Making Entities Bindable
Binding to a nested property is easy enough:
checkBox1.DataBindings.Add(new Binding("Checked", bindingSource, "myProperty")); //Normal binding
checkBox2.DataBindings.Add(new Binding("Checked", ...
16
votes
5answers
4k views
Generate POCO classes in different project to the project with Entity Framework model
I'm trying to use the Repository Pattern with EF4 using VS2010.
To this end I am using POCO code generation by right clicking on the entity model designer and clicking Add code generation item. I ...
16
votes
5answers
12k views
Entity Framework - Cannot convert lambda expression to type 'string' because it is not a delegate type
I am using Entity Framework in my C# based code. I am running into an unexpected weirdness and am looking for suggestions.
Case 1, 2, 3, 4...
Projects:
RivWorks.dll
RivWorks.Service.dll
...
15
votes
4answers
2k views
What is the difference between Entity Framework and LINQ to SQL by .NET 4.0?
I was checking 2nd edition of Professional ASP.NET MVC and realized EF replaced LINQ to SQL. I am familiar to LINQ to SQL from the first book but I know nothing about EF. Anyway while reading the ...
15
votes
5answers
11k views
What is datetime2?
I´ve got this in a INSERT statment to MSSQL 2008
System.Data.SqlClient.SqlException:
The conversion of a datetime2 data
type to a datetime data type resulted
in an out-of-range value.
15
votes
1answer
25k views
Join and Include in Entity Framework
I have the following query in linq to entities. The problem is that i doesn't seems to load the "Tags" relation even thou i have a include thingy for it. It works fine if i do not join on tags but i ...
15
votes
5answers
13k views
How do I apply OrderBy on an IQueryable using a string column name within a generic extension method?
public static IQueryable<TResult> ApplySortFilter<T, TResult>(this IQueryable<T> query,
string columnName)
where T ...
14
votes
3answers
3k 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 ...
14
votes
2answers
1k views
EF4 code-first: defining object relationships, foreign keys
< RANT_MODE >
EF code-first approach is meant to save lots of time but for the time being I've only seen toy examples and spent hours trying to understand how I can make it generate the db I want. ...
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
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
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 ...
13
votes
3answers
663 views
What Are Your Thoughts On Entity Framework 4.0? [closed]
The initial release of the Entity Framework wasn't regarded well in the development community. Developers felt a number of things were left out, and many continued to use other ORM's, such as LINQ To ...
13
votes
8answers
11k views
Setting the default value of a DateTime Property to DateTime.Now inside the System.ComponentModel Default Value Attrbute
Does any one know how I can specify the Default value for a DateTime property using the System.ComponentModel DefaultValue Attribute?
for example I try this:
...
13
votes
6answers
12k views
Entity Framework Validation
I'm getting ready to start a new project and I've been researching the entity framework. My question is what is the best strategy for validating the entities? Other projects I've worked on have used ...
13
votes
5answers
6k views
Expression.Invoke in Entity Framework?
The Entity Framework does not support the Expression.Invoke operator. You receive the following exception when trying to use it:
"The LINQ expression node type 'Invoke' is not supported in LINQ ...
12
votes
1answer
336 views
Rookie question on POCO - MEF and EntityFramework architecture
and thanks in advanced.
I am building my workstation Agent application using MEF and EntityFramework 4.
The application is a simple agent that runs on a computer with a plug-in architecture (and ...
12
votes
3answers
4k 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 ...
12
votes
3answers
2k views
About Code First Database Evolution (aka Migrations)
I watched a screencast from MSDN BLOG that talks about database migration.
Is there anyone who knows when can we use this feature? It looks it doesn't work in CTP5 yet.
By the way, is there any way ...
12
votes
2answers
5k views
Strongly-Typed ASP.NET MVC with ADO.NET Entity Framework
I've finally gotten this working after days of struggle.
I've got a simple database of People and Departments:
I can use strongly-typed ASP.NET MVC views for reference/navigation properties! See ...
11
votes
3answers
409 views
Turn off tracking in entity framework model first
I'm tring to receive an entity and then update it, but I want to get it with no tracking, so I can attach it back to the context.
I have the EntityFramework.dll referenced (4.1). I generated the ...
11
votes
1answer
3k views
Error when installing EntityFramework package over NuGet
I tried to install EntityFramework 4.1 on VS 2010 through NuGet. I searched and found the package through "Tools > Library Package Manager > Add Library Package Reference" tool and I got this error: ...
11
votes
3answers
616 views
Do we still need stored procedures when using compiled queries?
When using compiled queries in entity framework (or linq-to-sql) in combination with SQL Server, is there actually still any performance benefit in using stored procedures?
Compiled queries will be ...
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
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
3answers
7k views
Problem with cascade delete using Entity Framework and System.Data.SQLite
I have a SQLite DB that is set up so when I delete a Person the delete is cascaded. This works fine when I manually delete a Person (all records that reference the PersonID are deleted). But when I ...
11
votes
5answers
2k views
Database migrations for Entity Framework 4
I've been playing with Entity Framework 4, using the model driven approach to generate the database script from my entities. This is great but I'm not sure how this works when it comes to versioning ...
11
votes
3answers
2k views
Entity Framework with strongly-typed MVC
I'm using the ASP.NET MVC and the ADO.NET Entity Framework together.
I want my Views and Controllers strongly-typed.
But how am I supposed to handle entity associations?
Here's a simple example:
A ...