Created Unassigned: System.DataObjects.ObjectQuery.EnablePlanCaching doesn't...
When EnablePlanCaching is true, executing two queries in sequence when the only difference between the queries is between DateTimeOffset constant value (in the milliseconds range), the second query...
View ArticleCreated Unassigned: EF Migrations :: 1-Many default reference for entity with...
Repro.Create the following model``` public class ArubaTask{ public int Id { get; set; } public string Name { get; set; }} public class ArubaRun{ public int Id { get; set; } public...
View ArticleEdited Unassigned: EF Migrations :: 1-Many default reference for entity with...
Repro.Create the following model``` public class ArubaTask{ public int Id { get; set; } public string Name { get; set; }} public class ArubaRun{ public int Id { get; set; } public...
View ArticleEdited Issue: Table splitting: InvalidOperationException - sequence contains...
I have a repro for what I think might be an EF bug. I would like to split one table across two entities. Each of those entites contains a reference to a third entity. The two references must be exposed...
View ArticleEdited Unassigned: Auto-compiled queries doesn't work correctly with DateTime...
When EnablePlanCaching is true, executing two queries in sequence when the only difference between the queries is between DateTimeOffset constant value (in the milliseconds range), the second query...
View ArticleEdited Unassigned: Auto-compiled queries doesn't work correctly with DateTime...
When EnablePlanCaching is true, executing two queries in sequence when the only difference between the queries is between DateTime/DateTimeOffset constant value (in the milliseconds range), the second...
View ArticleEdited Unassigned: Auto-compiled queries don't work correctly with DateTime...
When EnablePlanCaching is true, executing two queries in sequence when the only difference between the queries is between DateTime/DateTimeOffset constant value (in the milliseconds range), the second...
View ArticleEdited Unassigned: Auto-compiled queries don't work correctly with DateTime...
When EnablePlanCaching is true, executing two queries in sequence when the only difference between the queries is between DateTime/DateTimeOffset constant value (in the milliseconds range), the second...
View ArticleEdited Issue: Auto-compiled queries don't work correctly with DateTime and...
When EnablePlanCaching is true, executing two queries in sequence when the only difference between the queries is between DateTime/DateTimeOffset constant value (in the milliseconds range), the second...
View ArticleClosed Issue: SprocMapping: MapToStoredProcedures with Timestamp throws...
The parameter type in SSDL is not serialized correctly for the Original value of Binary properties:``` XML<Schema><Function Name="EntityWithTimestamp_Update"><Parameter Name="Timestamp"...
View ArticleCreated Unassigned: EF Stored Procs :: Many-Many self reference mapped to...
Repro:Create the following model:``` public class ArubaPerson{ public int Id { get; set; } public string Name { get; set; } public ArubaPerson Partner { get; set; } public...
View ArticleCreated Unassigned: EF Stored Procs :: mapping Many-Many relationship when...
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 ArticleEdited Unassigned: 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 ArticleEdited Unassigned: One to one issue in TPC hierarchy [1229]
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 Unassigned: One to one issue in TPC hierarchy [1229]
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 ArticleEdited Issue: Properties configuration .HasPrecision(byte) doesn't affect...
Configuring precision after changing the column type is a NOOP: modelBuilder .Entity<Order>() .Property(e => e.Date) .HasColumnType("datetime2") .HasPrecision(6)***Original repro:The...
View ArticleEdited Issue: EF5 F1 Help missing a space between words [1175]
> [This page is specific to the latest version of the Entity Framework. The latest version is available as the as the 'Entity Framework'NuGet package. For more information, see Entity Framework...
View ArticleEdited Issue: CommandLineRequiredArgumentMissingException and...
These classes (used by migrate.exe) have hard-coded English strings. For example: "Invalid argument \"{0}\" at parameter index {1} in command line \"{2}\"".
View ArticleEdited Feature: Better integration of connection resiliency with interception...
When connection resiliency is enabled it is currently possible to observe failed attempts to execute database operations in logs and from interception points, but none of the data from retry logic,...
View ArticleCreated Unassigned: Wrong/odd behavior using HasDefaultSchema() feature (EF6)...
I have detected a odd behavior using HasDefaultSchema y my DbContext.I have a DbContext that iherited from other.The base context:``` public class AppFwBaseContext : DbContext{ public...
View Article