Closed Issue: EF Stored Procs :: mapping Many-Many relationship when one...
Create the following model:``` public class Gear{ public int Id { get; set; } public virtual ICollection<Weapon> Weapons { get; set; }} public abstract class Weapon{ public int Id { get; set; }}...
View ArticleCreated Unassigned: Designer: Remove PreviewHelper class [1308]
Before most of the code in the designer was using EF6 but validation still used EF5. In EF6 we introduced new manifest tokens for Sql Server (one for 2012 and one for Azure) and the code that was still...
View ArticleEdited Unassigned: Designer: Remove PreviewHelper class [1308]
Before most of the code in the designer was using EF6 but validation still used EF5. In EF6 we introduced new manifest tokens for Sql Server (one for 2012 and one for Azure) and the code that was still...
View ArticleCreated Task: Designer: remove behavior [1309]
Behavior related things are not public and don't have any real implementation. They make code super complicated and does things that slow down the designer (e.g. we read from file system where we...
View ArticleEdited Unassigned: Designer: Remove PreviewHelper class [1308]
Before most of the code in the designer was using EF6 but validation still used EF5. In EF6 we introduced new manifest tokens for Sql Server (one for 2012 and one for Azure) and the code that was still...
View ArticleEdited Task: Designer: remove behavior [1309]
Behavior related things are not public and don't have any real implementation. They make code super complicated and does things that slow down the designer (e.g. we read from file system where we...
View ArticleCreated Unassigned: Migrations :: Invalid migration created for entity with...
Repro. Create the following model:``` public class Order{ public int Id { get; set; }} public class InternationalOrder : Order{ public string Country { get; set; }} public class TrollContext :...
View ArticleClosed Issue: CF Stored Proc :: Invalid migration created when mapping entity...
Create the following model:``` public class Order{ public int Id { get; set; }} public class InternationalOrder : Order{ public string Country { get; set; }} public class InheritanceContext :...
View ArticleCommented Issue: Powershell and Migrate.exe resources are not localized (EF6)...
__Edit:__After investigation, I've determined that Resources.Migrate.resx and Resources.PowerShell.resx are __not localized__ in the ef6 satellite packages. Only Resources.resx (the main runtime set of...
View ArticleEdited Unassigned: Powershell and Migrate.exe resources are not localized...
__Edit:__After investigation, I've determined that Resources.Migrate.resx and Resources.PowerShell.resx are __not localized__ in the ef6 satellite packages. Only Resources.resx (the main runtime set of...
View ArticleClosed Issue: CF Stored Procs :: error when creating migrations that map to...
Probably related to (i.e. caused by) https://entityframework.codeplex.com/workitem/1251, but filing just in case because experience is slightly different.Create the following model:``` public class...
View ArticleEdited Task: Runtime loads pre-generated views by index - prevents from...
Currently a class that allows mapping pre-generated views is derived from EntityViewContainer and has to implement ViewCount and GetViewAt abstract methods (I think it was done to be able to generate...
View ArticleEdited Feature: Provide a public way of generating the hash over a model used...
The validity of a set of discovered pre-generated views depends on the model hash persisted alongside the views matching the hash computed against the current state of the model. Having the ability to...
View ArticleEdited Task: Review Metadata APIs made public for EF Designer [904]
Review Metadata APIs made public for EF Designer:- is the set complete (i.e. aren't we missing accepting some parameters only because they are not used by the designer, aren't we missing types that are...
View ArticleCreated Feature: Log a warning when POCO proxies cannot not be created [1312]
(this is to track one of the ideas from [work item #496](https://entityframework.codeplex.com/workitem/496), which I am closing as logging & tracing is already implemented)We support working with...
View ArticleClosed Issue: UpForGrabs: Add Tracing/Logging Infrastructure [496]
Add a Tracing/Logging infrastructure and log useful messages to it.Could use this to log info / warnings / errors e.g. info like SQL being generated behind the scenes (see...
View ArticleEdited Feature: Log a warning when POCO proxies cannot not be created [1312]
(this is to track one of the ideas from [work item #496](https://entityframework.codeplex.com/workitem/496), which I am closing as logging & tracing is already implemented)We support working with...
View ArticleEdited Feature: Code First: Log a warning when properties in a class that...
"I created a class with a property that looked like this:public List<string> AkaNames { get; set; }This property didn't translate into anythin in the database. Either this should be translated or...
View ArticleEdited 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: Implementing IDictionary results in not mapped property [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 Article