Created Unassigned: Make Migration DB engine independent. [1364]
As I understand, currently Migrations are dependent on the used Database engine, and don't work, when another engine is used, since the edmx model is checked against a hash of the edmx model used at...
View ArticleEdited Unassigned: Make Migration DB engine independent. [1364]
As I understand, currently Migrations are dependent on the used Database engine, and don't work, when another engine is used, since the edmx model is checked against a hash of the edmx model used at...
View ArticleEdited Unassigned: Make Migrations DB engine independent. [1364]
As I understand, currently Migrations are dependent on the used Database engine, and don't work, when another engine is used, since the edmx model is checked against a hash of the edmx model used at...
View ArticleEdited Unassigned: Make Migrations DB engine independent. [1364]
As I understand, currently Migrations are dependent on the used Database engine, and don't work, when another engine is used, since the edmx model is checked against a hash of the edmx model used at...
View ArticleCommented Unassigned: Add proper support of multiple schemas in database. [1363]
Please add proper support of multiple schema database mapping.The issue present itself when database have two or more schemas, with tables that have the same...
View ArticleCommented Unassigned: How to use IPluralizationService [1360]
I need pluralize my entities with [Inflector](http://nuget.org/packages/Inflector/).I post this [question in...
View ArticleNew Comment on "Connection Resiliency Spec"
@AndriySvyryd: You said: [Outer transactions aren't supported because when an operation that is part of an existing transaction fails then the transaction is rolled back...]. If I understand correctly...
View ArticleCommented Issue: DetectChanges() throws "An item with the same key has...
Hi,In Beta 1 the DbContext.ChangeTracker.DetectChanges() throws "An item with the same key has already been added." exception after setting a complex type property.See the following code which...
View ArticleEdited Issue: DetectChanges() throws "An item with the same key has already...
Hi,In Beta 1 the DbContext.ChangeTracker.DetectChanges() throws "An item with the same key has already been added." exception after setting a complex type property.See the following code which...
View ArticleCommented Issue: UpForGrabs: Eager and lazy loading has quadratic complexity...
When navigation property is populated Add method is called on RelatedEnd class in loop. Add method internally calls CheckIfNavigationPropertyContainsEntity on EntityCollection class - this method...
View ArticleEdited Issue: UpForGrabs: Eager and lazy loading has quadratic complexity [591]
When navigation property is populated Add method is called on RelatedEnd class in loop. Add method internally calls CheckIfNavigationPropertyContainsEntity on EntityCollection class - this method...
View ArticleEdited Issue: Eager and lazy loading has quadratic complexity [591]
When navigation property is populated Add method is called on RelatedEnd class in loop. Add method internally calls CheckIfNavigationPropertyContainsEntity on EntityCollection class - this method...
View ArticleEdited Issue: Exception thrown when calling detect changes twice with...
Repro attached.If you call detect changes twice with a nullable primary key EF throws an exception:System.ArgumentException was unhandled HResult=-2147024809 Message=The key-value pairs that define an...
View ArticleCommented Issue: Code First: Mapping bug when one end of a many-to-many is...
The following model:``` c#public class Gear2{ public int Id { get; set; } public virtual ICollection<Weapon> Weapons { get; set; }}public abstract class Weapon{ public int Id { get; set; }}public...
View ArticleSource code checked in, #9c64b3c56f74f06ebe4d0b1c490b739e7d24ec21
Migrations: Fix for #1242 - Misleading exception thrown when trying to map entity with composite key, being a dependent of 1-Many relationship Problem: When generating update trees for dependent...
View ArticleEdited Issue: Migrations: Migrating from PK/FK to separated out FK as an IA...
Create the following model``` public class ArubaTask{ public int Id { get; set; } public string Name { get; set; }} public class ArubaRun{ public int Id { get; set; } public...
View ArticleEdited Issue: Migrations doesn't handle column names with periods [611]
If .ColumnName is set to a string that contains a '.' the tables create correctly, but when Migrations are enabled/added the generated code no longer compiles. example:".PrimaryKey(t =>...
View ArticleClosed Task: Designer: Remove PreviewHelper class [1308]
Before most of the code in the designer was using EF6 but validation still used EF5. In EF6 we introduced new manifest tokens for Sql Server (one for 2012 and one for Azure) and the code that was still...
View ArticleClosed Task: Designer: remove behavior [1309]
Behavior related things are not public and don't have any real implementation. They make code super complicated and does things that slow down the designer (e.g. we read from file system where we...
View ArticleEdited Issue: CF Stored Procs :: Misleading exception thrown when trying to...
Repro.Produce the following model:``` public class ArubaTask{ public int Id { get; set; } public string Name { get; set; }} public class ArubaRun{ public int Id { get; set; } public...
View Article