Closed Issue: EF provider type names should include full assembly information...
Currently assembly-qualified like this:> System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServerare used to load the EF provider, either by convention or when specified in the...
View ArticleSource code checked in, #e7245781b2450399100e1cb561baf9387f2191e8
Adding update tests. CR: BriceLam
View ArticleCreated Unassigned: Designer: Unchecking "include FK columns in the model"...
I have a database with the following schema (shown below). When I run reverse-engineer and attempt to create a new model from the database, it will import the foregin key "Orders.Customer_ContactID"...
View ArticleCreated Unassigned: Consider replacing internal usage of IsStateManagerDrity...
Currently code like the EntityAdapter is invoking IsStateManagerDirty, which implements a full copy of the state tracking dictionaries into an array, which is unnecessary if we just need to know...
View ArticleEdited Unassigned: Consider replacing internal usage of IsStateManagerDirty...
Currently code like the EntityAdapter is invoking IsStateManagerDirty, which implements a full copy of the state tracking dictionaries into an array, which is unnecessary if we just need to know...
View ArticleCommented Feature: Support projections to strongly typed collections in LINQ...
Consider the repro below. This code attempts to execute a query which projects into DTO objects. One DTO object (BlogDto) contains a collection of the other DTO (PostDto). If the property that...
View ArticleCreated Unassigned: Complex query with group by and aggregate function [1090]
(Note for triage: I think this is an important thing to look at in the future)This complex query was reported by a customer. Given the model:
View ArticleEdited Unassigned: Complex query with group by and aggregate function [1090]
(Note for triage: I think this is an important thing to look at in the future)This complex query was reported by a customer. Given the model:``` public class SiteHit{ public int Id { get; set; } public...
View ArticleEdited Unassigned: Complex query with group by and aggregate function [1090]
(Note for triage: I think this is an important thing to look at in the future)This complex query was reported by a customer. Given the model:``` public class SiteHit{ public int Id { get; set; } public...
View ArticleEdited Unassigned: Complex query with group by and aggregate function [1090]
(Note for triage: I think this is an important thing to look at in the future)This complex query was reported by a customer. Given the model:``` public class SiteHit{ public int Id { get; set; } public...
View ArticleEdited Unassigned: Complex query with group by and aggregate function [1090]
(Note for triage: I think this is an important thing to look at in the future)This complex query was reported by a customer. Given the model:``` public class SiteHit{ public int Id { get; set; } public...
View ArticleEdited Unassigned: EFDesigner (v12): Association Set Name pluralization...
___This is blocking at least one P1 QA test.___If we determine that the new behavior is preferred, I will update the QA test to support the new behavior.1. Add a new C# project.2. Add a new db-first...
View ArticleEdited Issue: DetectChanges navigation property fix-up bug? [668]
Given a POCO model and Code First, after setting a foreign key property on an instance that has an associated navigation property, fix-up is supposed to occur during DetectChanges. If code causes...
View ArticleEdited Unassigned: EFDesigner (v12): Association Set Name pluralization...
___This is blocking at least one P1 QA test.___If we determine that the new behavior is preferred, I will update the QA test to support the new behavior.1. Add a new C# project.2. Add a new db-first...
View ArticleEdited Issue: EF cross checks EDM and CLR enum members in some cases [623]
We relaxed requirements for matching EDM and CLR enum types so that the EDM type does not have to have all members that the CLR type has. However we missed a check we had in DbExpressions. It shows up...
View ArticleEdited Task: Add a way to encapsulate lightweight conventions [1046]
We should add a way to easily encapsulate conventions, similar to how a user can inherit from EntityTypeConfiguration<T>.Design meeting notes for this:...
View ArticleEdited Task: Add missing configuration convention functionality to...
There are currently some things that configuration conventions can do that lightweight conventions cannot. We should expose these in lightweight conventions.Some of examples of this are:Ignore...
View ArticleSource code checked in, #91138244af9eb8d80556cae7370d8ab89730bc93
TheOriginalIsUnfaithfulToTheTranslation - porting the fix to workitem 184 from the original changes made to Dev11. Basically, this change attempts to load the assembly that contains the [ScriptIgnore]...
View ArticleEdited Issue: Port Fix: An enum in a different assembly triggers type...
We're using EF 4.3.1 code-first under .NET 4.0 and VS2012. We have a query that looks similar to the following:ctx.Set<Entities.A>().Select(a => new DTO.A { Id = a.Id, Name = a.Name...
View ArticleCommented Issue: Port Fix: An enum in a different assembly triggers type...
We're using EF 4.3.1 code-first under .NET 4.0 and VS2012. We have a query that looks similar to the following:ctx.Set<Entities.A>().Select(a => new DTO.A { Id = a.Id, Name = a.Name...
View Article