Commented Issue: MustFix: Using enum with multiple assemblies and derived...
This can be reproduced in the following scenario:1. Base class with an enum2. two derived classes in different assembliesException Message: No corresponding object layer type could be found for the...
View ArticleNew Post: Weird behavior of DbConfiguration [EF 6]
Sektor,In the example where you use DbConfiguration you are setting a default connection factory. The default connection factory is used by EF when creating a connection by convention. In other words,...
View ArticleUpdated Wiki: Roadmap
This page provides a roadmap for Entity Framework. This is a planning document, not a specification of what is to come. We hope to implement most or all of the features listed here, but there are no...
View ArticleUpdated Wiki: Roadmap
This page provides a roadmap for Entity Framework. This is a planning document, not a specification of what is to come. We hope to implement most or all of the features listed here, but there are no...
View ArticleSource code checked in, #7b222d51ce68
AtWillExceptions (Remove use of Code Contracts) This is the first part of the change which removes use of Code Contracts. The consolidation of other ways to throw ArgumentExceptions is still to come,...
View ArticleNew Post: Additional ObjectContext and EntityConnection constructors
Hi tamasflamich,Are you suggesting that you would like to contribute this change or are you asking us to make the change? If the former, then we'll discuss and get back to you on whether or not we...
View ArticleUpdated Wiki: Documentation
This site is dedicated to working with and contributing to the Entity Framework code base. If you want to use an officially supported Entity Framework release to develop your applications then head...
View ArticleSource code checked in, #5f7a1a4d87c8
Fixed test break in debug build due to bad Assert that was previously being ignored.
View ArticleCreated Issue: Migration from DateTime to DateTimeOffset column with data...
If we have a database with DateTime property (datetime column) and we want to change the type to DateTimeOffset using migrations the following error with show up:The object...
View ArticleEdited Issue: Migration from DateTime to DateTimeOffset column with Default...
If we have a database with DateTime property (datetime column) and we want to change the type to DateTimeOffset using migrations the following error with show up:<br /><br />The object...
View ArticleEdited Issue: MustFix: Nesting an .edmx under a project folder causes .tt to...
**This was fixed in the VS 2012 Update. You can get it from: http://www.microsoft.com/visualstudio/eng/downloads#d-visual-studio-2012-update** <br /><br />Repro steps:<br />1. Create...
View ArticleCreated Issue: Wrong migration when adding explicit foreign key property to a...
given the class:public class Product{ public int Id { get; set; } virtual PropertiesTemplate PropertiesTemplate { get; set; } }when I added explicit foreign key property public int PropertiesTemplateId...
View ArticleNew Post: Additional ObjectContext and EntityConnection constructors
Hi Arthur,After a quick glimpse on the existing code, it seems that this should be fairly easy to implement, so I would kindly contribute this change. I am waiting for the outcome of the discussion.I...
View ArticleEdited Feature: Consider setting the READ_COMMITTED_SNAPSHOT option to ON in...
This database-level option changes the implementation of the default transaction isolation level (read committed) to use snapshots instead of shared locks, potentially allowing for more scalability and...
View ArticleCommented Issue: MustFix: Nesting an .edmx under a project folder causes .tt...
**This was fixed in the VS 2012 Update. You can get it from: http://www.microsoft.com/visualstudio/eng/downloads#d-visual-studio-2012-update** <br /><br />Repro steps:<br />1. Create...
View ArticleCommented Issue: MustFix: EF Designer may blindly overwrite facets of C-Space...
There is a new feature in EF Designer in VS2012 where we update facets of C-Space properties based on facets on S-Space properties. This is done to propagate changes the user made to the database to...
View ArticleCommented Task: MustFix: Designer: Reduce VM usage when adding new model [414]
We should try and reduce the virtual memory usage when you add a new Entity Data Model in VS2012.Comments: This issue is fixed in Visual Studio 2012 Update 1 -...
View ArticleNew Post: FxCop Suppressions For Designer Generated Code?
You get the same problem if you use VS' Static Code Analysis tool. If you enable Code Analysis on Build and set the rule set to Microsoft Basic Correctness Rules, you get a ton of errors from the...
View ArticleCreated Issue: Code First Migration Generated Code Missing GeneratedCode...
When you execute Add-Migration it will generate a new class in the Migrations folder that has an associated Designer file. Designer files are not meant to be updated by the developer, and should have...
View Article