Edited Unassigned: Performance: InitializeDatabase regressed by changeset...
[Changeset 1911dc7cef21db6e630b9258d53584a326438cc8](https://entityframework.codeplex.com/SourceControl/changeset/1911dc7cef21db6e630b9258d53584a326438cc8) introduces a performance regression to the...
View ArticleEdited Issue: Add the debug symbols for EF to SymbolSource (NuGet Symbol...
It would often be useful for us developers to be able to step through the EF code to understand why it does something or why something doen't work. Having the debug symbols distributed with the nuget...
View ArticleCommented Unassigned: Performance: InitializeDatabase regressed by changeset...
[Changeset 1911dc7cef21db6e630b9258d53584a326438cc8](https://entityframework.codeplex.com/SourceControl/changeset/1911dc7cef21db6e630b9258d53584a326438cc8) introduces a performance regression to the...
View ArticleEdited Issue: Performance: InitializeDatabase regressed by changeset...
[Changeset 1911dc7cef21db6e630b9258d53584a326438cc8](https://entityframework.codeplex.com/SourceControl/changeset/1911dc7cef21db6e630b9258d53584a326438cc8) introduces a performance regression to the...
View ArticleCreated Issue: AsStreaming invalid generic constraint? [1201]
The following fails to compile:context.History .Where(h => h.MigrationId == migrationId) .Select(_ => 1) .AsStreaming()// AsStreaming causes compilation error because the project returns...
View ArticleEdited Task: Metadata extension methods originally added for Code First can...
This can be done now because of the metadata unification work
View ArticleCommented Issue: Add support for AddRange and RemoveRange on IDbSet [1086]
Ideally, AddRange and RemoveRange should be added to IDbSet. However, adding members to an interface is a breaking change and hence we should consider whether or not this is acceptable given the way...
View ArticleClosed Issue: Add support for AddRange and RemoveRange on IDbSet [1086]
Ideally, AddRange and RemoveRange should be added to IDbSet. However, adding members to an interface is a breaking change and hence we should consider whether or not this is acceptable given the way...
View ArticleNew Post: ModelBuilder and extended MetadataProperties (DataModelAnnotation?)
It has been a long a time since then. I checked the recent source code and implementing this functionality become much easier. The same logic looks like this now:public abstract class ConfigurationBase...
View ArticleClosed Issue: Visual Studio 2012 with latest EF designer: Error message: A...
Repro steps:1. Install VS11 VNS (sanity test passed) 2. Install latest EF tools, it’s upgraded. 3. Run sanity test again, there’s now options to choose EF6.0 or 5.0, choose 6.0.4. new Windows class...
View ArticleCreated Unassigned: Properties.HasPrecision(byte) doesn't affect DateTime...
The convention below should set the default precision for all datetime objects in the model to 6 but currently it is a NOP. The other overload is .HasPrecision(byte, byte) and using this instead has...
View ArticleEdited Unassigned: Properties convention .HasPrecision(byte) doesn't affect...
The convention below should set the default precision for all datetime objects in the model to 6 but currently it is a NOP. The other overload is .HasPrecision(byte, byte) and using this instead has...
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 Issue: Pre-generated views should be generated as an embedded resource...
The tools to create pre-generated views at design time currently emit C#/VB files with the views as Entity SQL queries in strings. Several customers with very large models have hit compiler limits on...
View ArticleClosed Issue: (EF6a2) GetExceutionStrategy requires SqlServer provider even...
On EF6 alpha2 the following exception is thrown in an app that is not using SqlServer provider at all. Adding SqlServer provider to the project fixes the issue. Need to investigate if this has been...
View ArticleClosed Task: Add time zone info to DbCommandLogger output [1151]
As per discussion in the design meeting. See: https://entityframework.codeplex.com/wikipage?title=Design%20Meeting%20Notes%20-%20May%2016%2c%202013
View ArticleEdited Issue: AsStreaming invalid generic constraint? [1201]
The following fails to compile:context.History .Where(h => h.MigrationId == migrationId) .Select(_ => 1) .AsStreaming()// AsStreaming causes compilation error because the project returns...
View ArticleEdited Issue: AlterColumn defaultValue creates bad constraint name if specify...
Follow-up to https://entityframework.codeplex.com/workitem/10801. Create a simple code-first model with a DateTime property e.g. public class TestX{ public int Id { get; set; } public DateTime...
View ArticleEdited Issue: UpForGrabs: " characters in Table names generate invalid...
When double quote characters are added to a table name they aren't properly escaped in generated migrations codeAdding this block of code: protected override void OnModelCreating(DbModelBuilder...
View ArticleEdited Unassigned: Wrong entity returned when using orderby, let and...
I have attached a console application to demonstrate the problem:I have a list of entities: A.Each entity A has 2 separate collections of entity B associated with it Bs1, and Bs2.The query should...
View Article