Closed Task: Review ignored tests [1]
Re-enable or remove ignored EF tests as they are currently generating build warnings.
View ArticleEdited Issue: EFDesigner - small UI tweaks to make the designer consistent...
Expanders in Win8's new theme should look like triangles and not +/- signs <br />Removing unnecessary spacing on the left of first item (in alignment with Solution Explorer)<br />Related...
View ArticleEdited Issue: Add -IgnoreChanges flag to Migration Documentation/Tutorials [652]
The Add-Migration command supports the -IgnoreChanges flag which allows a user to update the Model to match the database when the database is manually updated to match the model.<br /><br...
View ArticleClosed Issue: DbGeography that has no keys defined. [650]
I am hitting ModelValidationException when I use CodeFirst/DbModelBuilder to build my data model. One of my entities has DbGeography property. As long as I run the app, I will get the below...
View ArticleEdited Issue: Migrations: Warn when we detect an op that requires a table...
Changing a columns ident. spec is a good example of where we silently do nothing because we don't support table rebuilds. We should consider some way of notifying the user in this case.
View ArticleEdited Issue: UpForGrabs: Using the designer to make a DbSet property...
You can choose to make a DbSet property non-public, but once this happens the automatic initialization of the property by DbContext does not happen. (This is because we choose not to mess with...
View ArticleCommented Issue: UpForGrabs: Using the designer to make a DbSet property...
You can choose to make a DbSet property non-public, but once this happens the automatic initialization of the property by DbContext does not happen. (This is because we choose not to mess with...
View ArticleEdited Issue: Consider opening mapping metadata API [646]
Currently metadata API for C- and S- space is public. However C-S mapping API is internal. Therefore it is not possible to tell how entities are mapped to tables without re-parsing MSL which is not...
View ArticleEdited Issue: Custom key conventions are not compatible with the [Key]...
Situation: there is a custom convention that identifies a property in an entity as the primary key and there exists a [Key] annotation that specifies a different property within that entity we receive...
View ArticleUpdated Wiki: Design Meeting Notes
Entity Framework Design Meeting NotesThe Entity Framework team has a weekly design meeting in which we discuss/recap design and other issues with the codebase. These are the notes from those meetings....
View ArticleNew Comment on "Roadmap"
+1 for 'Unique constraints/alternate/natural keys' Especially useful when working with legacy databases.
View ArticleCreated Issue: implementing IDictionary results in not mapped [664]
implementing IDictionary results in not mapped.example attached :using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;namespace dict.Models{ public class...
View ArticleEdited Issue: UpForGrabs: Exception thrown when calling detect changes twice...
Repro attached.<br /><br />If you call detect changes twice with a nullable primary key EF throws an exception:<br /><br />System.ArgumentException was unhandled<br />...
View ArticleCreated Issue: Migrations does not set Discriminator column when when...
The following scenario is broken when run with default settings:- Create entity: Customer (int Id, string Name),- Create database that would match the model,- Add a few Customers to the database,-...
View ArticleCreated Feature: Document DbContext.SaveChanges exceptions [666]
The doc comments for DbContext.SaveChanges() should indicate that the DbUpdateConcurrencyException exception could be thrown.It may also be worth documenting other exceptions too.
View ArticleEdited Issue: MustFix: Enable JSON serialization of dynamic proxies [184]
"INITIAL BUG:<br />It seems that when Entity Framework creates proxy classes for entity objects, it does not honour property attributes set on virtual navagation properties. It is a serious...
View ArticleNew Post: ToListAsync doesn't return with await
Hi everybody,I have created a very simple test method to play with async methods of EF6 but this just doesn't work with await. I cannot get the exception if there is ever one here (in all honesty, I...
View ArticleNew Post: ToListAsync doesn't return with await
I'd like to help but I need a bit more information. you say it doesn't work... what is the behavior you are expecting to see, and what are you seeing instead. you never actually say what it does / is...
View ArticleNew Post: ToListAsync doesn't return with await
I think you need an await keyword in there await GetHotelsAsync().ContinueWith(task => {
View ArticleNew Comment on "Code-based Configuration"
I've played with this in the EF6 alpha (Oct 30 release) and had a conundrum. I used SetDatabaseInitializer in the DbConfiguration class. That requires a reference to the context, whether using a magic...
View Article