Edited Unassigned: EF6 Code First Table Splitting issue when validating a...
This bug is related to the bug [#1385](https://entityframework.codeplex.com/workitem/1385) (that it is fixed in EF6rc1 for the scenario provided).Although the issue is fixed for the scenario I posted...
View ArticleCommented Unassigned: BUG: TableBuilder.PrimaryKey [1597]
#MigrationsWhen specifying a custom column-name for Primary Key, it isn't used.There are no tests covering the scenario, and so even though the API seems to support it, it isn't...
View ArticleCommented Unassigned: BUG: TableBuilder.PrimaryKey [1597]
#MigrationsWhen specifying a custom column-name for Primary Key, it isn't used.There are no tests covering the scenario, and so even though the API seems to support it, it isn't...
View ArticleEdited Issue: Migrations :: moving from TPH to table TPT fails (PK already...
Create the following model``` public class User{ public int Id { get; set; }} public class MyUser : User{ public string Name { get; set; }} public class MyContext : DbContext{ public DbSet<User>...
View ArticleEdited Issue: [RTM] Severe memory leak when inserting many entities [doesn't...
I've recently started writing a new component, and chose EF6 RC1 Code-first. The model consists of only two classes composed of primitive types. No relationships, no complex types, nothing fancy except...
View ArticleEdited Issue: [RTM] Severe memory leak when inserting many entities [doesn't...
I've recently started writing a new component, and chose EF6 RC1 Code-first. The model consists of only two classes composed of primitive types. No relationships, no complex types, nothing fancy except...
View ArticleEdited Issue: [Investigate EF6] Issues mixing conventions and entity...
I'm using current EF 6.0 code - my own local build of EF against the master branch, synced an hour or two ago. I synched just to make sure that the problems I'm seeing weren't already fixed.I've...
View ArticleClosed Unassigned: Migrations :: When adding new column to the database, we...
Consider the following model:``` public class Customer{ public int Id { get; set; }} public class VipCustomer : Customer{ public string Name { get; set; }} public class MyContext : DbContext{ public...
View ArticleNew Post: Entity Framework calls AssemblyName.ReferenceMatchesDefinition...
I wonder if something like this would work (assuming parameters are not null):return reference.Equals(definition) || string.Equals(reference.FullName, definition.FullName,...
View ArticleCommented Issue: EF 6 RC1 breaks Microsoft ASP.NET Identity EntityFramework...
REPRODUCEInstall Visual Studio 2013 Preview + ASP.NET and WebTools 2013 Preview Refresh UpdateNew WebProject, MVCUpdate all nuget packagesRun the app, try registering via clicking the link on the...
View ArticleClosed Issue: EF 6 RC1 breaks Microsoft ASP.NET Identity EntityFramework...
REPRODUCEInstall Visual Studio 2013 Preview + ASP.NET and WebTools 2013 Preview Refresh UpdateNew WebProject, MVCUpdate all nuget packagesRun the app, try registering via clicking the link on the...
View ArticleCommented Issue: Designer Accesibility: Wizard buttons fail on high contrast...
Choose high contrast white theme. The contrast analyzer fails the wizard buttons. Comments: Our wizard is build using WizardFramework which creates and styles the buttons placed on the wizard form. It...
View ArticleClosed Issue: Designer Accesibility: Wizard buttons fail on high contrast...
Choose high contrast white theme. The contrast analyzer fails the wizard buttons. Comments: The issue is in the WizardFramework we used to create the EF wizard.
View ArticleEdited Issue: [RTM] Migrations :: upgrade from EF5 or EF6Beta1 to EF6RTM...
Consider the following model:``` public class Foo{ public int Id { get; set; } public Bar Bar { get; set; }} public class Bar{ public int Id { get; set; } public Foo Foo { get; set; }} public class...
View ArticleCommented Issue: [RTM] Migrations :: upgrade from EF5 or EF6Beta1 to EF6RTM...
Consider the following model:``` public class Foo{ public int Id { get; set; } public Bar Bar { get; set; }} public class Bar{ public int Id { get; set; } public Foo Foo { get; set; }} public class...
View ArticleCreated Issue: Migrations :: we create invalid migration configuration for...
Consider the following:``` public class BaseUser{ public int Id { get; set; } public string Name { get; set; }} public class DerivedUser : BaseUser{ public string Credentials { get; set; }} public...
View ArticleCreated Issue: Reuse single ObjectReferenceEqualityComparer instance [1614]
ObjectReferenceEqualityComparer is stateless which means a single instance can be used anywhere it is needed. Currently we create a new instance for each use, which consumes unnecessary memory.
View ArticleCommented Issue: [NonVS] EF6 providers page should include registration info...
If your EF provider is not registered you will get the following message:"No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlServerCe.4.0'. Make sure the...
View ArticleEdited Issue: [NonVS] EF6 providers page should include registration info [1581]
If your EF provider is not registered you will get the following message:"No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlServerCe.4.0'. Make sure the...
View ArticleEdited Issue: [RTM] Increased memory usage EF5->EF6 [1605]
I've recently started writing a new component, and chose EF6 RC1 Code-first. The model consists of only two classes composed of primitive types. No relationships, no complex types, nothing fancy except...
View Article