Commented Task: Review the exception messages from async methods [382]
When the underlying IQueryable doesn't implement the async interface we throw on of these exceptions: The source IQueryable doesn't implement IDbAsyncEnumerable The provider for the source IQueryable...
View ArticleEdited Issue: Performance of async queries regressed by changesets...
The throughput of async operations was decreased between 2% and 33% after the introduction of ObjectContext.ExecuteInTransactionAsync(). The profiles indicate that there's a significant amount of CPU...
View ArticleCommented Issue: Performance of async queries regressed by changesets...
The throughput of async operations was decreased between 2% and 33% after the introduction of ObjectContext.ExecuteInTransactionAsync(). The profiles indicate that there's a significant amount of CPU...
View ArticleCommented Task: Async: Implement API Review Action Items [962]
See [async API review design meeting notes](http://entityframework.codeplex.com/wikipage?title=Design%20Meeting%20Notes%20-%20March%2018%2c%202013) for more details.* [Rowan] Review and standardize use...
View ArticleEdited Feature: Enable retry policy on database connection failure (important...
This item was migrated from the DevDiv work item tracking system [ID=149100].
View ArticleCommented Feature: Enable retry policy on database connection failure...
This item was migrated from the DevDiv work item tracking system [ID=149100].Comments: Fixed in changesets: 22ed3cab3f432a28ddd716a9a32fe9871ca0101f 861766e8abc6431e40a7413c6d5af735614bacbd...
View ArticleEdited Task: Async: Implement API Review Action Items [962]
See [async API review design meeting notes](http://entityframework.codeplex.com/wikipage?title=Design%20Meeting%20Notes%20-%20March%2018%2c%202013) for more details.* [Rowan] Review and standardize use...
View ArticleCommented Task: Async: Implement API Review Action Items [962]
See [async API review design meeting notes](http://entityframework.codeplex.com/wikipage?title=Design%20Meeting%20Notes%20-%20March%2018%2c%202013) for more details.* [Rowan] Review and standardize use...
View ArticleEdited Issue: If spatial types cannot be loaded we should tell it to the user...
If Microsoft.Sql.Types.dll assembly is not present DefaultSpatialServices will throw NotImplementedException without any error message. It is hard to figure out why the exception is thrown and how to...
View ArticleCommented Issue: If spatial types cannot be loaded we should tell it to the...
If Microsoft.Sql.Types.dll assembly is not present DefaultSpatialServices will throw NotImplementedException without any error message. It is hard to figure out why the exception is thrown and how to...
View ArticleCommented Issue: If spatial types cannot be loaded we should tell it to the...
If Microsoft.Sql.Types.dll assembly is not present DefaultSpatialServices will throw NotImplementedException without any error message. It is hard to figure out why the exception is thrown and how to...
View ArticleCommented Issue: If spatial types cannot be loaded we should tell it to the...
If Microsoft.Sql.Types.dll assembly is not present DefaultSpatialServices will throw NotImplementedException without any error message. It is hard to figure out why the exception is thrown and how to...
View ArticleCommented Issue: If spatial types cannot be loaded we should tell it to the...
If Microsoft.Sql.Types.dll assembly is not present DefaultSpatialServices will throw NotImplementedException without any error message. It is hard to figure out why the exception is thrown and how to...
View ArticleCommented Issue: Inner join instead of outer [960]
Inner join generated where an outer join is expected.This happens when a join is made from T1 to T2 and then to T3 if relation T1-T2 is optional and T2-T3 is mandatory. Concrete example...
View ArticleCreated Issue: union of two select queries with navigation properties fails...
```var query1 = db.CustomersA.Include(c => c.Orders).Select(c => new { ID = c.ID, Orders = c.Orders });var query2 = db.CustomersB.Include(c => c.Orders).Select(c => new { ID = c.ID, Orders...
View ArticleNew Post: EntityType [FullName] Property Return Unexpected Result In EF5.x &...
Thank you @Arthur. This is what I was looking for.
View ArticleNew Post: Changes in Model First deletes Entity classes from TFS.
We have setup a Model first EF project. When I change something in the Model all the generated Entity classes are deleted from TFS. At this stage we regenerate the Database each time we change the...
View ArticleEdited Issue: Remove the logic that adds the application token to connection...
The original goal of changing the connection string is to obtain metris of EF usage in SQL Azure. The problem with this is that fiddling with the connection string when the user is not explicitly...
View ArticleClosed Issue: Remove the logic that adds the application token to connection...
The original goal of changing the connection string is to obtain metris of EF usage in SQL Azure. The problem with this is that fiddling with the connection string when the user is not explicitly...
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 Article