A tag for ADO.
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-patternHere'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.3I'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-migrationsI'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 triggersI 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-classesI 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-firstI'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 pocoI'm trying to bind a WinForms DataGridView to an EntityCollection<T> from an EntityFramework4 object. The trouble is, …
c# winforms entity-framework-4 datagridview entitycollectionI'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 takeI 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