Closed Issue: Designer: Build required before third-party providers are...
When creating a new model, if you select a database without an EF6 provider, you will get an informational message telling you to "exit this wizard and install a compatible provider before performing...
View ArticleClosed Task: EFDesigner - model first - we should let people know that the...
In Model first we decided not to add templates to the project until the users selects the EF version s/he wants to work with. The reason for this is that we have different templates for EF6 and EF5 and...
View ArticleClosed Issue: EF6 Designer signed EFTools.msi program name [1171]
The signed MSI shows "ADO.NET Entity Framework Tools" as the "Program Name" on the UAC pop-up. This should be changed to match the product name which appears in the installer dialogs and under...
View ArticleCommented Unassigned: System.ArgumentException [1428]
Code First DevelopmentEntity Framework 5.0; .NET Framework 4.0.30319.1 full; Windows server 2008 R2 Enterprice x64.'DocumentDescription' is model. Work fine on developer machine , but on server code...
View ArticleClosed Task: Designer: Remove F1 Help [1280]
We're seeing that F1 help is providing very little benefit to customers (less than 0.01% of traffic to our help docs comes from someone pressing F1).Rather than spending the time to update the help for...
View ArticleClosed Task: Templates: Make DbSet properties virtual (to allow mocking) [1354]
Currently our T4 templates do not generate virtual DbSet properties. This means you need to edit the default templates to be able to use Moq etc. to create a test double of the generated context.It...
View ArticleClosed Issue: Code First: Column uniquification is not deterministic [368]
The following code can produce different models from machine to machine. class Context : DbContext{ public DbSet<TypeBase> Types { get; set; }} public class TypeBase{ public int Id { get; set; }}...
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 ArticleCommented Issue: Designer: COMException while adding templates during...
__Repro steps__:1. New Empty ADO.NET Entity Data Model2. Add Code Generation Item3. Update/Generate__Unexpected result__:* An error dialog is shown with the following message: An exception of type...
View ArticleSource code checked in, #61e76fc981746417790fb4306f76bbb2442c976c
Added one missed change to conventions exception messages
View ArticleClosed Task: API Review: Conventions exception messages [1416]
__LightweightEntityConfiguration_TypeMismatch__The type '{0}' is invalid. The specified type must derive from '{1}'.Remove__LightweightEntityConfiguration_NonScalarProperty__ The property '{0}' cannot...
View ArticleCreated Unassigned: EF5 - Migration Code isn't creating working code [1448]
I've got the following class definitions:``` public partial class User{ public int UserId { get; set; }``````/// <summary>/// This is a <see cref="BlastersShared.GameSession"/> that is...
View ArticleEdited Unassigned: EF5 - Migration Code isn't creating working code [1448]
I've got the following class definitions:``` public partial class User{ public int UserId { get; set; } public int BlastersMembersID { get; set; } public string Name { get; set; }[DoNotSerialize]...
View ArticleCommented Issue: Native support for Enumerable.Contains [245]
Currently Enumerable.Contains like this:new [1,2,3].Contains(a)Is translated to an sub-tree of expressions equivalent to1 == a || 2 == a || 3 == aThis expression tree is kept balanced to avoid stack...
View ArticleEdited Task: EFTools: Add EF6 App/Web.config IntelliSense (xsd) [1014]
The App.config/Web.config IntelliSense files that get installed by EFTools.msi should be updated to include valid EF6 elements.The xsd for "validating" EF config section in web/app.config file does not...
View ArticleEdited Issue: Edmx: reverse order of properties in new designer [1350]
As per comment from the blog (http://blogs.msdn.com/b/adonet/archive/2013/05/30/ef6-beta-1-available.aspx#10430626):_Need the entity designer to generate nodes inside .edmx file in exactly the same...
View ArticleSource code checked in, #b032fe3d9fe81f0792d51f459c36710110ae9a07
Verbolicious (Adding verbs back to DbConfiguration) After playing with the updated DbConfiguration DSL-style methods the general feeling is that they seem a bit strange, especially as they are not part...
View ArticleClosed Issue: DbExecutionStrategy doesn't work on async methods [1443]
Currently in the ExecuteAsync implementation we don't call UnwrapAndHandleException on the exception that is caught and since all the exceptions from providers are wrapped it means that nothing will be...
View ArticleCommented Issue: Edmx: reverse order of properties in new designer [1350]
As per comment from the blog (http://blogs.msdn.com/b/adonet/archive/2013/05/30/ef6-beta-1-available.aspx#10430626):_Need the entity designer to generate nodes inside .edmx file in exactly the same...
View Article