Updated Wiki: Design Meeting Notes
Entity Framework Design Meeting Notes The Entity Framework team has a weekly design meeting in which we discuss/recap design and other issues with the codebase. These are the notes from those...
View ArticleNew Post: DbContext Connection events or overrides
Have you considered wrapping the connection and overriding Close()?
View ArticleNew Post: DbContext Connection events or overrides
Yes--that's the first thing I tried.It seems to be a rabbit-hole. You end up having to override the ConnectionFactory, Provider, Manifest, and all sorts of other stuff. The overhead to inject at the...
View ArticleCreated Issue: Polymorphic LINQ queries should support casting for entities...
Right now, the following type of query is allowed:IQueryable<BaseEntity> q = ...;var results = q.Select(be => be is DerivedEntity1 ? 1 : 2).ToList();But the following does not compile to...
View ArticleCreated Issue: Generate pre-compiled views on the fly as needed instead of...
One of the things blocking the use of pre-compiled views for us at work is the fact that there's no easy way to automate it. It looks like the current implementation of pre-compiled views is something...
View ArticleNew Post: Applying expressions to entities
Hi, Is there any news here? FWIW, I've been continuing using this in unofficial builds without any problems so far. Cheers,Harald
View ArticleCreated Issue: Entity Framework updating [Timestamp] property on parent...
As per unanswered StackOverflow and EF Forum...
View ArticleCommented Issue: Generate pre-compiled views on the fly as needed instead of...
One of the things blocking the use of pre-compiled views for us at work is the fact that there's no easy way to automate it. It looks like the current implementation of pre-compiled views is something...
View ArticleEdited Issue: Generate pre-compiled views on the fly as needed instead of...
One of the things blocking the use of pre-compiled views for us at work is the fact that there's no easy way to automate it. It looks like the current implementation of pre-compiled views is something...
View ArticleClosed Issue: Entity Framework updating [Timestamp] property on parent entity...
As per unanswered StackOverflow and EF Forum...
View ArticleCommented Issue: Update relationships when saving changes of EF4 POCO objects...
Entity Framework 5, POCO objects and some discontected applications like ASP.NET. In a relationship for example many to one, EF doesn't update childs when its parent is updated.Here is a better...
View ArticleClosed Issue: Update relationships when saving changes of EF4 POCO objects [631]
Entity Framework 5, POCO objects and some discontected applications like ASP.NET. In a relationship for example many to one, EF doesn't update childs when its parent is updated.Here is a better...
View ArticleCommented Issue: STE: Expose error code for InvalidOperationException [627]
Handling exceptions with self-tracking entities is ugly because one must parse the (localized?) message string. Please expose an error code with InvalidOperationException.It is not clear to me why STEs...
View ArticleEdited Issue: STE: Expose error code for InvalidOperationException [627]
Handling exceptions with self-tracking entities is ugly because one must parse the (localized?) message string. Please expose an error code with InvalidOperationException.It is not clear to me why STEs...
View ArticleCommented Issue: Enable-Migrations should add a connectionString [616]
When you enable-migrations, this should add a connectionstring in web.config which should set the initial catalog and attachdbfilename=|AppData|\databasename.mdf so the database gets dropped in...
View ArticleClosed Issue: Enable-Migrations should add a connectionString [616]
When you enable-migrations, this should add a connectionstring in web.config which should set the initial catalog and attachdbfilename=|AppData|\databasename.mdf so the database gets dropped in...
View ArticleNew Post: StorageMappingItemCollection cannot locate correct entity container...
So any ideas why GetEntityContainer cannot locate the correct EntityContainer by name?
View ArticleNew Post: StorageMappingItemCollection cannot locate correct entity container...
Which container do you actually need? There should be (at least) one in the EdmItemCollection and there should be (at least) in StoreItemCollection. I believe StorageMappingItem collection does not...
View ArticleNew Post: StorageMappingItemCollection cannot locate correct entity container...
I need EntityContainer, so I can get to other properties and collections of mapping. The only way I can get it is by name, the iterator for EdmItemCollection obviously give EdmItem which doesn't have...
View ArticleUpdated Wiki: specs
Entity Framework 6 As we design the features to be included in the Entity Framework 6 release the specifications will be made available on this page. These specifications will be working documents to...
View Article