Closed Issue: Designer: Duplicate errors appear when using template-based...
__See attached photo.__When using template-based codegen, I occasionally see errors get duplicated. The same exception appears prepended with both "Running transformation: " and "Error <number>:...
View ArticleCommented Issue: Diagrams generated by the Power tools add an error to the...
Repro steps:1. Create a basic model with one entity and one DbContext2. Right click on the code file and select "View Entity Data Model (Read-only)" from EF context menu3. When the diagram opens there...
View ArticleClosed Issue: Diagrams generated by the Power tools add an error to the Error...
Repro steps:1. Create a basic model with one entity and one DbContext2. Right click on the code file and select "View Entity Data Model (Read-only)" from EF context menu3. When the diagram opens there...
View ArticleCommented Issue: Database.UseTransaction may perform context initalization,...
When we let EF know about the user transaction, one can use:context.Database.UseTransaction(myTransaction). Problem is, that under the covers it looks like...
View ArticleClosed Feature: Code First: Improve fluency of entity configuration APIs [887]
Some of the methods on EntityTypeConfiguration aren't chain-able. I.e. ToTable, Ignore.Comments: Confirmed fixed
View ArticleEdited Issue: Consider bringing back EntityFunctions and EdmFunctionAttribute...
When we merged the core EF functionality into EntityFramework.dll we did some refactorings. In particular, we renamed and moved the EntityFunctions class to align it with the DbContext API. However, in...
View ArticleNew Comment on "Code First Insert/Update/Delete Stored Procedure Mapping"
Why is the API limited to Update, Delete and Insert stored procedures? I need support for Select stored procedures. I create drop downs that are a subset of the table which are created by joining other...
View ArticleSource code checked in, #d76893328542
Code First: Adds HasParameterName to property configuration fluent API - Provides a single place to set parameter names for stored procs in the fluent API - Very similar to HasColumnName. - Does not...
View ArticleNew Comment on "Code First Insert/Update/Delete Stored Procedure Mapping"
@wrlucas, this particular feature is limited to modification function mapping (CUD). What you describe is known as function imports and is something we do want to try and get to for EF6.
View ArticleNew Comment on "Code First Insert/Update/Delete Stored Procedure Mapping"
@taspeotis, The function parameters we generate should definitely match what we generate for the corresponding columns. If you are seeing something different, please file a bug, thanks!
View ArticleEdited Issue: Migrations: Crash in model differ when encountering a changed...
The _typeSize map in ColumnModel needs to be updated with the new EDM3 primitives.
View ArticleCommented Feature: One model used for wide entities and narrow entity...
Scenario:1. Customer has backend SQL Server with wider rows.2. Customer syncs with SDF files (SQL CE). Slimmer rows in SDF file.3. Would like to use the same model for both. The premise is that EF...
View ArticleSource code checked in, #46f95213437a
Revert "Temporary workaround for CheckSkipStrongNamesStatus not working on net40-only machines" This reverts commit 18cb4fc511705efcc1337f9af680db533c608330.
View ArticleClosed Feature: One model used for wide entities and narrow entity...
Scenario:1. Customer has backend SQL Server with wider rows.2. Customer syncs with SDF files (SQL CE). Slimmer rows in SDF file.3. Would like to use the same model for both. The premise is that EF...
View ArticleClosed Issue: Many-to-many relationship left and right keys flipped after...
This appears to be a bug where MapLeftKey and MapRightKey are not mapping HasMany and WithMany respectively but instead flipping this mapping around. This seems to be a regression for 4.3.1 to 5.Full...
View ArticleCommented Issue: Inconsistent state when model has 1-many FK navigation on...
When model has 1-many FK navigation and composite key we get into invalid state and fail on insert with non-obvious exception:Violation of PRIMARY KEY constraint 'PK_dbo.ArubaTasks'. Cannot insert...
View ArticleEdited Issue: Inconsistent state when model has 1-many FK navigation on...
When model has 1-many FK navigation and composite key we get into invalid state and fail on insert with non-obvious exception:Violation of PRIMARY KEY constraint 'PK_dbo.ArubaTasks'. Cannot insert...
View ArticleCommented Issue: Inconsistent state when model has 1-many FK navigation on...
When model has 1-many FK navigation and composite key we get into invalid state and fail on insert with non-obvious exception:Violation of PRIMARY KEY constraint 'PK_dbo.ArubaTasks'. Cannot insert...
View ArticleSource code checked in, #51c6e63dd957
Code First: Enables HasParameterName on Properties lightweight config APIs.
View ArticleEdited Feature: Migrations: Ability to 'Squash' Migrations [821]
After using EF Code First migrations for a while, I have reached a point where my production database is nice and stable. My code, however, has over a dozen migrations that are little more than...
View Article