Top "Entity-framework-4" questions

A tag for ADO.

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 …

asp.net-mvc-2 entity-framework-4 repository-pattern
Entity Framework (4.3) looking for singular name instead of plural (when entity name ends with "s")

Here's my situation: I have been working on an ASP.NET MVC 3 application for a while. It has a database (…

c# .net entity-framework entity-framework-4 entity-framework-4.3
EF 4.3 Auto-Migrations with multiple DbContexts in one database

I'm trying to use EF 4.3 migrations with multiple code-first DbContexts. My application is separated into several plugins, which possibly have …

entity-framework-4 entity-framework-migrations
error when inserting into table having instead of trigger from entity data framework

I'm using entity framework 4 , on inserting a new record using entity framework in a table that have instead of insert …

sql-server sql-server-2008 entity-framework-4 triggers
EF 4, how to add partial classes

I needed to extend my EF partial classes, because I want to add some functionality to able to use Oracle's …

c# .net oracle entity-framework-4 partial-classes
Is it possible to prevent EntityFramework 4 from overwriting customized properties?

I am using EF 4 Database first + POCOs. Because EF has no easy way to state that incoming DateTimes are of …

c# entity-framework entity-framework-4 poco database-first
Entity Framework POCO SaveChanges() on Update doesn't work?

I'm working with EF CTP 4, using POCO models, adding a new object and call SaveChanges() works but updating the object …

entity-framework entity-framework-4 poco
How to Sort WinForms DataGridView bound to EF EntityCollection<T>

I'm trying to bind a WinForms DataGridView to an EntityCollection<T> from an EntityFramework4 object. The trouble is, …

c# winforms entity-framework-4 datagridview entitycollection
Entity framework joins

I'm using the entity framework 4.0 and I'm having some issues with the syntax of my query. I'm trying to join 2 …

join entity-framework-4 skip take
using Guid as PK with EF4 Code First

I have this class and table: public class Foo { public Guid Id {get;set;} public string Name {get;set;} } create …

entity-framework-4 code-first entity-framework-ctp5 ef4-code-only