New Post: EntityGraph and VS 2012 using Entity Framework 5
Hi, I'm new to the concept of entity graphs but I read it could improve performance for querying large sets of data.. The article on codeproject and instructions here on codeplex say that we should...
View ArticleNew Post: When EF6 final will be released
Some info in the comments here: http://blogs.msdn.com/b/adonet/archive/2013/03/18/entity-framework-links-4.aspx
View ArticleNew Post: Multi-tenant using Entity Framework 5.0 databasefirst and single...
Hi, I need to implement multi-tenancy using Entity Framework 5.0 databasefirst and single database multiple schemas. can any provide samples? Thanks
View ArticleNew Post: Download EF5 RTM source and patch it?
Hi all, I'm using EF5 Code First and I'm dead in the water on a bug that apparently will not be fixed in EF5. The bug (#481) has to do with abstract entity base classes causing problems with NotMapped...
View ArticleNew Post: Multi-tenancy and connection pool
Thanks moozzyk for your response and sorry for late response from my side as I was out for a month. I tried as you mentioned but still I am getting error. I have also posted the same issue in...
View ArticleNew Post: Adding support for ordred collections
@PeterSvahn I believe this is covered by this work item: https://entityframework.codeplex.com/workitem/121 This feature doesn't fit in the schedule for EF6 but it is something we are considering for...
View ArticleNew Post: EntityGraph and VS 2012 using Entity Framework 5
@bokanowski I believe you are referring to this: http://www.codeproject.com/Articles/247254/Improving-Entity-Framework-Query-Performance-Using This project is not part of EF but is rather an extension...
View ArticleNew Post: Download EF5 RTM source and patch it?
@CoreyW Unfortunately the EF5 source code is not available--the switch to an open source license was made after work on EF6 had already begun. If you have a repro for the code that still doesn't work...
View ArticleNew Post: Download EF5 RTM source and patch it?
@ajvickers Sure. I'll try and come up with a stripped-down sample project. How do I get it to you?
View ArticleNew Post: Download EF5 RTM source and patch it?
@CoreyW You should be able to attach it to the CodePlex issue. If that doesn't work you can email me (avickers) at microsoft.com. Thanks, Arthur
View ArticleNew Post: Namespaces and generated classes in Model First.
Any chance to get an update that prefixes the model names with the schema and then generates classes that adhere to that name? So that [Stg].[Trade] turns into - as namespaces are ignored in entity...
View ArticleNew Post: Namespaces and generated classes in Model First.
I think that from tooling perspective the only way to achieve this would be to write an extension to the designer that would tweak the model the way you need it to be tweaked. I have not tried doing...
View ArticleNew Post: ModelBuilder and extended MetadataProperties (DataModelAnnotation?)
It has been a long a time since then. I checked the recent source code and implementing this functionality become much easier. The same logic looks like this now:public abstract class ConfigurationBase...
View ArticleNew Post: Multi-tenancy and connection pool
Here is the complete code, I am not able to save the data. class Program { static void Main(string[] args) { MyContext context = new MyContext("Server=localhost;Database=TestDB;Integrated...
View ArticleNew Post: Native support for nested set operations
"Post EF6" - given that EF6 will final with visual studio vNext in 2-3 years.... "post EF" is something that is SO far out you can as well say "won't be supported".
View ArticleNew Post: Namespaces and generated classes in Model First.
It would be nice because there are a significant number of design decisions that make EF Pretty unusable for a larger project imho, and some of that resolves around the name generation. For our...
View ArticleNew Post: Supporting EF6 and pre-EF6 in same codebase
Hi *, I'm writing provider for Firebird and I'm trying to find a best way to support EF6 and pre-EF6 in same codebase. For the pre-EF6 you needed just to reference System.Data.Entity, something that...
View ArticleNew Post: NotMapped Attribute in EF 5
Hello Duane, Could you provide a small repro of your scenario? What might work is creating a DbSet property for the base type and ensuring that it is sorted before other properties alphabetically....
View ArticleNew Post: EF6 Beta1 MappingException unclear error message
Hi! Been trying to port an old entity framework code base over to code first, using the power tools. Entities generated fine and some manual work to setup stuff correctly. But when trying to run the...
View ArticleNew Post: TVF and code-first
Will TVF be supported with code-first in EF 6? I while back I read that it will be, but I can't find any references to it here.
View Article