Source code checked in, #a07bf51c2e3d
PlanckCounts (Replace uses of BitAraay.Count with BitArray.Length)
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 ArticleCreated Issue: Add -IgnoreChanges flag to Migration Documentation/Tutorials...
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.This is a very useful...
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.This is a very useful...
View ArticleCommented Issue: DropCreateDatabaseIfModelChanges initialzer doesn't work in...
When an exception is thrown from a custom convention the database is put into a bad state that causes the Initializer to not run. Repro:Create an console application following the standard...
View ArticleCommented Issue: DropCreateDatabaseIfModelChanges initialzer doesn't work in...
When an exception is thrown from a custom convention the database is put into a bad state that causes the Initializer to not run. Repro:Create an console application following the standard...
View ArticleCreated Issue: EFDesigner - small UI tweaks to make the designer consistent...
Expanders in Win8's new theme should look like triangles and not +/- signs Removing unnecessary spacing on the left of first item (in alignment with Solution Explorer)Related items: -...
View ArticleEdited Issue: Aero.NormalColor.xaml should be moved out of XmlCore [321]
We shouldn't be adding VS specific stuff to XmlCore - it's meant to be indepedent of VS. Can you put your code in EntityDesignExplorerFrame instead?XmlCore\Themes\Aero.NormalColor.xamlRelated...
View ArticleEdited Issue: [UX] Model Browser: Tree triangles inconsistent with Solution...
Currently our tree expansion triangles look inconsistent with those used in Solution Explorer. We should switch to use the same images.Related...
View ArticleClosed Issue: UpForGrabs: Support Mono [400]
Now that EF is open source, why not support Mono like Asp.net MVC?Comments: Mono now includes Entity Framework.
View ArticleEdited Issue: Allow simple logging of database commands [397]
When one is debugging my app, I would like to have a way to know the last command executed by the entity framework to know if one can improve the query by changing the lambda query / linq expression or...
View ArticleEdited Issue: Query: Inefficient SQL generated for Any() [192]
Repro Steps: 1. Execute an Entity Framework query that uses Any() to check for the existence or absence of a matching record. 2. Check the executed SQL.When using the Any() method on Entity Framework...
View ArticleClosed Issue: Query: Inefficient T-SQL compared wiht L2S [303]
EF translates LINQ query to an inefficient T-SQL comapred wiht L2S. EF checks for the row twice and makes the query perform slower:LINQ to...
View ArticleEdited Issue: UpForGrabs: Trace DbQuery parameter values [619]
Please add feature to trace DbQuery parameter valuesDbQuery (in contrast to ObjectQuery) does not have a Parameters property.Using SqlProfiler is not an option.We are tracing using log4net in...
View ArticleCreated Issue: Entity Framework Child Entity On Gridview Only Count & Is Read...
Entity Framework 5 With Visual Studio 2012 Using Default (Db Context Generator) Child Entity Read Only & Count on Data Grid
View ArticleClosed Issue: Entity Framework Child Entity On Gridview Only Count & Is Read...
Entity Framework 5 With Visual Studio 2012 Using Default (Db Context Generator) Child Entity Read Only & Count on Data GridComments: This is a duplicate of...
View ArticleCreated Issue: huge query generation in Code-First by calling List.Contains...
Hello.This is very strange behavior. I have three entities, and a simple query:var a = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 };using (var context = new...
View ArticleEdited Issue: huge query generation in Code-First by calling List.Contains in...
Hello.This is very strange behavior. I have three entities, and a simple query:var a = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 };using (var context = new...
View ArticleCommented Issue: huge query generation in Code-First by calling List.Contains...
Hello.This is very strange behavior. I have three entities, and a simple query:var a = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 };using (var context = new...
View ArticleNew Post: Code First: Querying XML columns perhaps by using a defining query
The requirement:I would like to be able to query on xml columns in a database. I've seen a few examples where xml is deserialized into an object when the entity framework materializes the object...
View Article