Edited Feature: Support simpler ways of specifying graph edges for eager...
This item is here both to capture the possibility of supporting pattern similar to LINQ to SQL’s [DataLoadOptions.LoadWith](http://msdn.microsoft.com/en-us/library/bb548760.aspx) and to capture some...
View ArticleNew Post: Proposal: Graph-based querying for Entity Framework
Hello Merijn, It was nice to meet you in TechDays a few months ago. I just wanted to follow up on this thread and let you know that I have captured what I think are some of the essential elements of...
View ArticleEdited Feature: Support simpler ways of specifying which graph edges to...
This item is here both to capture the possibility of supporting pattern similar to LINQ to SQL’s [DataLoadOptions.LoadWith](http://msdn.microsoft.com/en-us/library/bb548760.aspx) and to capture some...
View ArticleCreated Unassigned: Update-Database with ConnectionString to remote server...
Using EntityFramework 6 beta 1, when running "update-database" in the package manager console to update a local database, everything succeeds. When running the following command, there is an...
View ArticleEdited Issue: UpForGrabs: Query: Leap year bug on CreateDateTime and...
"When you write something like this: var d = db.Ps.DefaultIfEmpty().Select(p => EntityFunctions.CreateDateTime(2012,02,29,0,0,0));You’ll get an exception saying: An error occurred while reading from...
View ArticleCommented Issue: Public Dispatch methods sometimes get interception context...
It was never the intention that the code calling public dispatch methods use the Result property set into the interception context after the dispatch method has returned. The dispatch method returns...
View ArticleEdited Issue: Public Dispatch methods sometimes get interception context...
It was never the intention that the code calling public dispatch methods use the Result property set into the interception context after the dispatch method has returned. The dispatch method returns...
View ArticleEdited Issue: One to one issue in TPC hierarchy with mapped abstract base...
Hi, I have a TPC hierarchy like this:``` public abstract class Base{ public Guid BaseId { get; set; } public string BaseName { get; set; }} public class Sub1 : Base{ public Sub2 Vender { get; set; }}...
View ArticleCommented Issue: Assert thrown when running P1 test case...
The test case has following assert twice. After clicking Ignore on it, the test case passes eventually. Here is the text from the Assert.```---------------------------Assertion Failed: Abort=Quit,...
View ArticleCommented Issue: UpForGrabs: Consider using Contains method if available [425]
We currently have code that enumerates a collection to check if it contains an element. This code could use the Contains method if it exists. Since the code deals with navigation properties it is...
View ArticleCreated Unassigned: Conventions cannot access dotted properties [1392]
With this model``` public class Comment{ public int ID { get; set; } public Inner Sub { get; set; } public class Inner{ public int I { get; set; } }}```I cannot access the property 'I' with either of...
View ArticleEdited Issue: Stored Procs :: invalid cast exception when creating migrations...
When trying to scaffold migrations for the following model:``` public class Landmark{ public int Id { get; set; } public StandingStone MatchingStone { get; set; } public Hold LocatedIn { get; set; }}...
View ArticleCommented Issue: Stored Procs :: invalid cast exception when creating...
When trying to scaffold migrations for the following model:``` public class Landmark{ public int Id { get; set; } public StandingStone MatchingStone { get; set; } public Hold LocatedIn { get; set; }}...
View ArticleEdited Issue: [UX] Icons on listview and treeview controls in the EDM Wizard...
Entity Data Model Wizard icons are not resized properly on high DPI.
View ArticleCommented Issue: [UX] Icons on listview and treeview controls in the EDM...
Entity Data Model Wizard icons are not resized properly on high DPI.Comments: Addressed in commit #332eafbc 0 Fixes for bug 1055.
View ArticleNew Comment on "Roadmap"
Crossing my fingers hoping that private backing fields and read-only properties will make it into EF 6. Not having this really pollutes the domain with persistent specific workarounds. See:...
View ArticleCreated Unassigned: AutomaticMigrationsEnabled = false but Throwing Model...
If you you have AutomaticMigrationsEnabled = false; but have a dbo._MigrationHistory and the Model has pending changes EF throws a "The model backing the '' context has change since database was...
View ArticleEdited Unassigned: AutomaticMigrationsEnabled = false but Throwing Model...
If you you have AutomaticMigrationsEnabled = false; but have a dbo._MigrationHistory and the Model has pending changes EF throws a "The model backing the '' context has change since database was...
View ArticleEdited Unassigned: AutomaticMigrationsEnabled = false but Throwing Model...
If you you have AutomaticMigrationsEnabled = false; but have a dbo._MigrationHistory and the Model has pending changes EF throws a "The model backing the '' context has change since database was...
View ArticleCreated Unassigned: Using .AsNoTracking results in long Query time [1394]
Hello,I have a strange behavior with a complicated query in EF 5.0(Times from SQL Proviler)- If I use .AsNoTracking the Query runs for 12 Seconds- If I copy the query from Profiler to SQL Query...
View Article