Closed Issue: Setup :: EF Beta 1 does not install on VS Desktop Express [1127]
When trying to install EF package on Visual Studio Desktop Express (2012) we throw the following exception:Could not load file or assembly 'VsWebSite.Interop, Version=8.0.0.0, Culture=neutral,...
View ArticleEdited Issue: Designer (& NuGet packages) depend on VsWebSite.Interop, which...
We see an error when adding a new EDMX on this SKU. It successfully creates the EDMX but fails as it is adding the NuGet packages, which causes the wizard to roll back to the "add new item" dialog.
View ArticleSource code checked in, #7679777f33035eaa7949c6e1d9c1d52c3036449a
CodePlex #388: Added API surface for specifyin a different name for columns in each table when splitting an entity
View ArticleUpdated Wiki: Design Meeting Notes - May 9, 2013
Design Meeting Notes - May 9, 2013Interception building blocksThe high-level goal for the interception feature is to allow external code to observe and potentially intercept EF operations. The specific...
View ArticleCommented Issue: Composable function parameters do not support Unicode names...
Looks like they are getting run through some bad regex. This affects the designer's ability to reverse engineer from databases with non-English TVF parameter strings.Comments: Right now this is...
View ArticleEdited Issue: Code First: Entity splitting specify a different name for the...
I want mapping one entity to two tables, but then two tables have different primary key names.In code first, how to configure this?
View ArticleCommented Issue: Code First: Entity splitting specify a different name for...
I want mapping one entity to two tables, but then two tables have different primary key names.In code first, how to configure this?Comments: Here is a short example of the new API surface. Notice the...
View ArticleEdited Issue: Composable function parameters do not support Unicode names [1126]
Looks like they are getting run through some bad regex. This affects the designer's ability to reverse engineer from databases with non-English TVF parameter strings.**Note to EF Team:** This bug is...
View ArticleUpdated Wiki: Design Meeting Notes
Entity Framework Design Meeting NotesThe Entity Framework team has a weekly design meeting in which we discuss/recap design and other issues with the codebase. These are the notes from those meetings....
View ArticleClosed Issue: Code First: TPT specify a different name for the primary key...
When using TPT hierarchy inherited types can not override the name column of the primary key of the table.Sample:class Address { public Guid Id { get;set; } }EntityTypeConfiguration<Address> {...
View ArticleEdited Issue: TPT Cannot reference base type in derived type [1093]
Error reproduction steps:1. Create a base type:``` public class BaseType{ public Guid Id { get; set; }}```2. Create a derived type with a property of BaseType in it.``` public class DerivedType:...
View ArticleSource code checked in, #4bf9836897ce7fb4522be8e64e681f599a03c5d7
Another attempt to fix flaky async test
View ArticleNew Post: SnubbingTheSnorkeling aka Interception logging
@IDisposable Thanks for providing feedback. The idea behind the Log property is to provide a very easy to use default logging mechanism. However, this is just a façade on top of several building...
View ArticleSource code checked in, #5525b0bf892e8539a2ca8528f6f8957e116cca07
Updating an async test that was missed in the last commit.
View ArticleNew Post: Building blocks for interception
@Unai Thanks for the feedback. The reason that AddInterceptor is not on DbConfiguration is that DbConfiguration is about setting up configuration for EF in the app domain such that it can be done in...
View ArticleCommented Issue: Query: Cast introduced for enum properties may prevent SQL...
"In this it might have to do with the fact that it is using function mapping (it is a TVF), but I am not sure. var products = from p in db.ProductsByName(""%ich%"") where p.Category == Categories.Food...
View ArticleCommented Issue: NavigationPropertyConvention called for complex properties...
Model ```public class Customer{ public int Id { get; set; } public string Name { get; set; } public Address Address { get; set; }}public class Address{ public string Street { get; set; } public string...
View ArticleEdited Issue: Update-Database -Script is broken [1100]
Repro:Create basic console application PM> Install-package entityframework -pre -version 6.0.0-beta1-20502PM> Enable-MigrationsPM> Add-Migration aPM> Update-Databaseadd property to...
View ArticleCommented Unassigned: TypeExtensions exception creating an instance of a...
Hi,I have an application that's using EntityFramework 5.The dll version is 4.0 .I am getting an exception executing a console application that executes with Framework4.The application was working...
View ArticleEdited Issue: Custom Conventions: Calling...
Consider a convention that tries to include all non-public properties in a model```modelBuilder .Entities() .Configure(c =>{ var nonPublicProperties =...
View Article