Edited Unassigned: EF Code-First doesn't detect multiplicity constraint...
In the model (self-referencing one-to-many relationship and TPH) described in this Stackoverflow question - http://stackoverflow.com/questions/17109540/entity-framework-self-referencing-entity - EF...
View ArticleEdited Feature: Allow for suspending retry behavior in...
This is based on a discussion we had today in the design meeting: Currently connection resiliency restricts by design patterns that cannot be safely retried:1. Streaming queries2. User initiated...
View ArticleCommented Unassigned: Undo/Redo after update-from or generate database...
Update From Database:1. Add new EDMX, empty model2. Update from an existing database and select a table.3. Once update is complete, press ctrl+zExpected: the reverse-egnineered entity...
View ArticleCommented Unassigned: Undo/Redo after update-from or generate database...
Update From Database:1. Add new EDMX, empty model2. Update from an existing database and select a table.3. Once update is complete, press ctrl+zExpected: the reverse-egnineered entity...
View ArticleCreated Unassigned: Exception could be improved when EntitySet.Table is...
When a model based convention on EntitySet modifies EntitySet.Table from CSpace a somewhat unclear exception is thrown. What this message actually means is that the .Table property must be changed from...
View ArticleCreated Unassigned: Bad exception is thrown when EntitySet.Name is changed...
When EntitySet.Name is changed by a model based convention from SSpace, the exception "Sequence contains no matching element" is thrown. This message is not helpful and is akin to a "segfault" in...
View ArticleNew Post: VSIX EF6/EF5 IModelTransformExtension Problem
Hi, We are actually revisiting the decision and are investigating if we can make extensions written for VS2012 continue to work with the new designer without having to recompile them. Here is the work...
View ArticleCommented Unassigned: Exception could be improved when EntitySet.Table is...
When a model based convention on EntitySet modifies EntitySet.Table from CSpace a somewhat unclear exception is thrown. What this message actually means is that the .Table property must be changed from...
View ArticleCreated Unassigned: IModelGenerationExtension OnAfterModelGenerated does not...
I cannot get IModelGenerationExtension OnAfterModelGenerated to fire at the end of the Generate Wizard.It does have a WizardKind property in the context, so I believe it should.Both...
View ArticleEdited Issue: Breaking change/regression on EntityConnection.Open [1204]
It was not uncommon to need code like the following to work around the limitations of EF5 and earlier in working with open connections, sharing connections, and sharing transaction. This code works...
View ArticleClosed Issue: DbUpdateException Serialization [1107]
I haven't dug into this one yet, but here is a small repro of an exception that comes from deserializing DbUpdateExceptions: var formatter = new BinaryFormatter(); Exception ex; using (var ms = new...
View ArticleNew Post: VSIX EF6/EF5 IModelTransformExtension Problem
Thanks Pawel, Yes, it would be good if you can achieve the dual usage. I've raised 1305 for the suspected bug. Can I ask you a favour? I was trying to automate the Generate Wizard when the User saves...
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 ArticleEdited 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 ArticleEdited Issue: Exploratory testing needed for model-based conventions [681]
Specifically: System.Data.Entity.Core.Metadata.Edm.EntityType.NameThis property needs to be exposed to allow model based conventions to change table names
View ArticleEdited Task: ExploratoryTesting: Interception/logging [1301]
Test points include (but not limited to): - Basic logging and customer formatting- Custom interceptors
View ArticleEdited Issue: If a context is getting information from DbContextInfo then it...
DbContextInfo is used when attempting to get information about a context at design time. The context created by CreateInstance of DbContextInfo should not allow database initialization to happen.
View ArticleEdited Task: ExploratoryTesting: Interception/logging [1301]
Test points include (but not limited to): - Basic logging and customer formatting- Custom interceptors
View ArticleEdited Task: Conventions should throw on invalid configuration [1047]
Alter conventions to throw when you get invalid configuration, such as calling HasKey with a property that doesn't exist for the entire set of types.
View ArticleEdited Issue: Breaking change/regression on EntityConnection.Open [1204]
It was not uncommon to need code like the following to work around the limitations of EF5 and earlier in working with open connections, sharing connections, and sharing transaction. This code works...
View Article