New Post: EF6b1 unit testing with new DbSet
Hello EF Team, Considering your Design Meeting Notes of May 16, 2013 on the new DbSet, How would you design a simple application with unit test? Thanks a lot!
View ArticleNew Post: Migrations' files in a separate project
Hi, I would like to know if is there a way to have the migrations' files in a separate project? And if having them in a separate project, am I able to use the Package Manager commands (Add-Migration,...
View ArticleNew Post: Proposal: Graph-based querying for Entity Framework
Hello Merijn, It was nice to meet you in TechDays a few months ago. I just wanted to follow up on this thread and let you know that I have captured what I think are some of the essential elements of...
View ArticleNew Post: Extentsion of ESQL to support Insert/Update/Delete
Are there plans for ESQL support of Insert / Update / Delete operations? I was thinking it would have been good to write provider independent ESQL for stored procedure mapping rather than TSQL as in...
View ArticleNew Post: custom O-C mapping contributions
I've used NHibernate for years on several projects and not being able to map to a private backing field for both "read-only / calculated" properties and IEnuermable properties with backing field...
View ArticleNew Post: Baffled. Model updates, but not the list of items it contains
I asked this same question at stackoverflow. It's on hold and I fail to understand why, but it led me here to ask the same question. I'm hoping for a warmer reception here. First, my code. public...
View ArticleNew Post: EF6 Beta1 - db.Database.CreateIfNotExists(); doesn't create the...
db.Database.CreateIfNotExists(); doesn't create the database anymore and always return true after enabling the migration. I don't see anything mentioned about it in release node as well. Is it the bug?...
View ArticleNew Post: DbQueryVisitor improvements
Hi. before a query is compiled to sql, all Set<T>() and Set(Type) methods and all DbSet<T> properties are replaced with ReplacementDbQueryWrapper. This happens in DbQeuryVisitor, in...
View ArticleNew Post: Mapping to abstract class TPH can't use single FK for derived class
I found this strange situation... maybe i wrong mapping but i tryied in different way without good result, could be a bug or a limitation? I need to have 2 class for my domain, i wont use the abstract...
View ArticleNew Post: EF 6 - Can an option be set to store Enums as Strings?
Hi One feature I really like in Nhibernate is that it stores Enums as strings. If you have to quickly look at the raw data in the database it is so much nicer seeing a string then the "int" value of...
View ArticleNew Post: EF 6 - Can an option be set to store Enums as Strings?
Hello chobo2, No EF6 does not support mapping enums to string columns. We have a feature in our backlog that is about allowing type conversions and other property level transformations in the mapping...
View ArticleNew Post: EF 6 Beta 1 - Exception when using IDataErrorInfo on Base Class
Hi, I'm using the Nuget beta 1 package of EF, and attempting to use code first to connect to my database. I've encountered an exception that was preventing me from ever hitting the database: whenever I...
View ArticleNew Post: EF 6 Beta 1 - Exception when using IDataErrorInfo on Base Class
@ObsidianPhoenix This is a bug in the beta which has since been fixed. (See http://entityframework.codeplex.com/workitem/1215) The latest nighly build does not throw with your sample code. See here for...
View ArticleNew Post: EF 6 Beta 1 - Exception when using IDataErrorInfo on Base Class
Thanks. I've pulled down the nightly and can confirm that it works in my code.
View ArticleNew Post: DbQueryVisitor improvements
Hello Alireza, Sounds like if making a simple change to the DbQueryVisitor enables this scenario you should go ahead and send the pull request. We will consider it for the next release after EF6....
View ArticleNew Post: Bug in TPT inheritance of EF6-beta1?
Hi, Lately I've been testing EF6 and I must say I'm very impressed with all the improvements! Can't wait for the RTM version to be shipped. While testing with EF6-Beta1 I think I found a bug. It's easy...
View ArticleNew Post: EF 6 planned release date
I have searched for and not found a planned release date for EF6. Are there any plans regarding release dates?
View ArticleNew Post: EF Power Tools Consolidation/Release
Over the past months I've read that the EF Power Tools are going away and being integrated into the core designer experience. Is this the case in VS 2013? Will this functionality ever be added to...
View ArticleNew Post: Bug in TPT inheritance of EF6-beta1?
Hi Jeroen, The fundamental reason that you are seeing this behavior is that EF doesn’t support different types in a hierarchy having different primary key definitions. You can see this if you look at...
View ArticleNew Post: EF 6 planned release date
@soadyp EF6 will be released at the same time as Visual Studio 2013, which has been announced as being available later this year. Thanks, Arthur
View Article