Source code checked in, #18acb7b6d3849a9bc3ae13a3de4a20f9c065c21c
Fix up AddMember so it throws if you attempt to add an EdmMember with the wrong DataSpace
View ArticleCommented Issue: 'Shared Columns': The item with identity 'SomeSharedColumn'...
I am trying this with __EntityFramework.6.0.0-alpha3-20420__Further to the issue https://entityframework.codeplex.com/workitem/1021 and https://entityframework.codeplex.com/workitem/583. I am seeing...
View ArticleSource code checked in, #26e7f3be7a396206b78ff884853eb677499c89ff
Adding StoreFunctionName to SSDL schema writer, so that the designer can find the store functions based on the SSDL. This was preventing functions with spaces in their names (which get converted to...
View ArticleCommented Feature: Code First: Allow indexes to be specified using...
"Problem Description:I'm looking forward to [StoreIgnore] attribute in EF 4 CTP 5. I would like to see a way to create index in table. Something like: [Indexed(Unique=false,Clustered=false)] int A {...
View ArticleEdited Issue: Reverse Engineer Code First: Using database name as entity...
The Reverse Engineer Code First process uses the database name (DbConnection.Database) as the entity container name. We don't do any escaping so this may contain invalid characters. This is basically...
View ArticleEdited Unassigned: Designer (v12): Mapping details does not immediately show...
1. Create a new db-first edmx with at least one table checked.2. Add new entity.3. Right click and view table mappings.4. In mapping details, attempt to map the entity to a table.Expected:Mapping shows...
View ArticleEdited Feature: Code First/Migrations: DDL opt-out [1082]
We should consider having an API for opting entities out of DDL generation when using Initializers/Auto-migrations.This would solve a problem some customers face when a subset of the model exists in...
View ArticleEdited Issue: AlterColumn defaultValue creates same default constraint name...
Issue in EF5 - Codefirst MigrationAltering colums to change them to No Nullable with a default value fails because EF doesn't create unique constraint name.ALTER TABLE [dbo].[ReferencesBase] ADD...
View ArticleEdited Unassigned: MigrateDatabaseToLatestVersion Initializer is broken [1099]
The recent changes to the structure of the migrations history table seem to have broken the Migrate initializer. Repro:Create program as shown in program.csPM> Install-package entityframework -pre...
View ArticleReopened Issue: Designer: Entity Framework randomly reorders imported...
This item was ported from a public Connect issue -...
View ArticleCreated Unassigned: 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 Issue: Migrations: Remove history table metadata from code-behind...
See design meeting notes: http://entityframework.codeplex.com/wikipage?title=Design%20Meeting%20Notes%20-%28March%2021%2c%202013Comments: While verifying, discovered issues...
View ArticleClosed Issue: Migrations: Remove history table metadata from code-behind [999]
See design meeting notes: http://entityframework.codeplex.com/wikipage?title=Design%20Meeting%20Notes%20-%28March%2021%2c%202013Comments: Verified fixed
View ArticleEdited Issue: EFDesigner (v12): Model does not validate on save. [1083]
___This is blocking at least one P1 QA test.___If we determine that the new behavior is preferred, I will update the QA test to support the new behavior.1. Create new C# project and add EDMX.2. Choose...
View ArticleCreated Issue: Scaffolding of stored procedures fails with DbUpdateException...
Given the following model:```public class WorldContext : DbContext{ public DbSet<Thing> Things { get; set; } protected override void OnModelCreating(DbModelBuilder modelBuilder){...
View ArticleEdited Issue: Scaffolding of stored procedures fails with DbUpdateException...
Given the following model:```public class WorldContext : DbContext{ public DbSet<Thing> Things { get; set; } protected override void OnModelCreating(DbModelBuilder modelBuilder){...
View ArticleCreated Unassigned: set identity seed & increament [1102]
if EF can set identity column for seed and increament arguments. that is great for creating TPC
View ArticleEdited Issue: Scaffolding of stored procedures fails with DbUpdateException...
Given the following model:```public class WorldContext : DbContext{ public DbSet<Thing> Things { get; set; } protected override void OnModelCreating(DbModelBuilder modelBuilder){...
View ArticleNew Post: Multi-tenancy and connection pool
Hi, We have developed a multi-tenant application using EF 4.3 Code First Model, where each tenant will have their on separate database. Since, we are expecting bit high number of tenants, we want to...
View ArticleEdited Task: Consider running same fxcop rules for providers and runtime [1098]
Apparently we don't run the same rules for debug builds across all product assemblies, and there doesn't seem to be a good reason for that.
View Article