Solution for Entity Framework Code First that will incrementally evolve the database schema as the model changes over time.

learn more… | top users | synonyms

1
vote
0answers
29 views

Update optional FK to Required with Automatic Migrations

I have a table which has an optional FK to another table and want to change that FK to a required relationship. I have Automatic Migrations enabled and enabled destructive changes for this update. ...
0
votes
0answers
9 views

Add-Migration error: Schema specified is not valid

I can not create a new migration Add-Migration Testing Package version Microsoft.AspNet.WebApi -> 5.0.0-beta1-130515 Microsoft.AspNet.WebApi.Client -> 5.0.0-beta1-130515 ...
0
votes
1answer
19 views

EF 5 - Get Migrations Scaffold to live in a seperate project

I don't particularly want the Entity Framework migrations scaffold code in my Data Access project. I've got a Console app that I manage database scripts with - so I'd like it live in here: ...
1
vote
0answers
21 views

Create fulltext index within Entity Framework Coded Migrations

TLDR; How do you add a full text index using Entity framework 5 coded migrations I'm having issues adding a full text index to a database using Entity framework migrations. It needs to be there from ...
0
votes
0answers
26 views

Cannot change table name with migration using entity framework code first with existing database

i have a problem when trying to change table name when doing migration using ef code first with an existing database. In existing database, i got a table name "Cities", and I want to change it to ...
0
votes
0answers
24 views

Generating EF migration models as part of nuGet package installation

I have built a package with some re-usable models. I originally wanted to include EF migration file for the models in the package itself; however, this doesn't seem viable given the ...
1
vote
2answers
73 views

Get script to create database including initializer data

I wonder if there's a possibility with Entity Framework's Migrations to get the sql script to create the content of my database including all the data from my seed method in the Configuration class: ...
0
votes
2answers
53 views

EF Data migrations wont detect changes when adding new migration

I am using Entity Framework 5.0 Data migrations along with code first. When i add a new field to my model and execute the following command in the package manager console. "Add-migration AddedField" ...
1
vote
1answer
64 views

Changing Users Context

I'm using the MVC4 Internet Application and I am trying to change the account model to use my context. I cannot seem to get it to work. I tried to delete the context and include the user profile in my ...
0
votes
2answers
382 views

Entity Framework Code First Migrations: Set Primary Key Value

I have a table that stores some extra data for some rows of a table like: public class QuoteExtra { [Key] public int QuoteId { get; set; } // More fields here } I'd like to be able to ...
0
votes
0answers
16 views

Has any attempted to provide a user experience for EF Migrations with option to migrate?

I've used EF migrations on a couple of projects now and whilst it's gone really well all of the projects can some level of manual application of migration to production. For a while I've kicking ...
1
vote
0answers
82 views

EF5 Migrations Seed AddOrUpdate with a nullable selection criteria

I have a question to which someone may have found a solution in the past. I'm seeding the database in the Configuration class of EF5 migrations, using the AddOrUpdate method. Here's the quick example ...
0
votes
0answers
181 views

EntityTypeConfiguration many-to-many mapping with link table with extra data referencing the same table “target”

Using Entity Framework 5, Code First with manual migrations. I have a number of PowerCells, one PowerCells can be switched with another, once. I am tracking this relationship in the database, and the ...
7
votes
1answer
200 views

Receiving "The model backing the 'Context' context has changed… on Add-Migration after EF 5 upgrade

We are building an app using code-first migrations. We had been using Entity Framework 5.0.0 RC, and we updated our NuGet package for Entity Framework. The database has been in sync with the models ...
0
votes
2answers
247 views

Why I can't get Entity Framework Migration to initial state?

I have deleted development database, and Migrations folder from project. When running unit test with use my project development database is recreated. I don't understand why running update-database ...
1
vote
1answer
186 views

EF Code First: CreateIndex - Covering Index

Is it possible to use the CreateIndex syntax of EF Code First Migrations to create a Covering Index (*see below for what a Covering Index is). For example I can create a simple index in a manual ...
0
votes
2answers
359 views

Entity Framework - implementing one-to-many foreign key relationship in Seed() method

I have the following classes: Landlord [Table("Landlord")] public class Landlord : UserProfile { public static int LandlordProfileViews { get; set; } // A Landlord can have many ...
0
votes
0answers
86 views

Managing associations in Entity Framework Seed method

I have a class Address: [Table("Address")] public class Address { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int AddressId { get; set; } // ... ...
0
votes
3answers
223 views

My __MigrationHistory table is not hidden. Has EF Code-First been disabled?

I've been reading about and beginning to use Entity Framework Code-First. Its been working fine on my local machine (DefaultConnection), but it seems to have stopped working on my production server (a ...
0
votes
1answer
360 views

Why does my Entity Framework migration seed run on update-database but not put any data in?

When I run update-datebase I get the following response: PM> update-database -verbose Using StartUp project 'BestOrders'. Using NuGet project 'BestOrders'. Specify the '-Verbose' ...
2
votes
1answer
353 views

Entity Framework CodeFirst Migrations, Running migrations with optional upgrading to newest changes

We are running Entity Framework 5 with Code First and Migrations Enabled. Running with the database initializer: MigrateToLatestVersion We have several customers live that run on the latest stable ...
0
votes
2answers
306 views

Scripting Initial Migration with Entity Framework Migrations

I'm having trouble making Entity Framework update to the latest migration automatically (conflicts between SimpleMembership and the EF data model) so I've decided to script each migration to SQL then ...
1
vote
1answer
99 views

EF Code First Migrations - should I remove migrations after downgrade?

I am using EF Code First with Migrations. After i downgrade to a migration version, should i delete all the others that has been created after that?
15
votes
2answers
796 views

EF5 Migration Update-Database -Script Error

I've been using Visual Studio 2012 RC with trial license with no problems. I purchased Visual Studio 2012 Professional yesterday, installed the latest version, and installed Update 1. I have a ...
3
votes
1answer
394 views

Automate EF-Migrations “Update-Database -Script”

I'm using EF migrations to track changes to our EF code-first DB model. Now I need to generate one SQL-Script for each migration, so that I can pass that set of scripts to the DBA. I was able to ...
1
vote
3answers
258 views

How do I force Entity Framework to mark a particular migration as having been applied?

I'm using Entity Framework 5 in a project, and I've got Migrations enabled. Here's the scenario: A new developer (dev1) comes on and builds the project from source. There are existing migrations ...
1
vote
1answer
186 views

Entity framework migrations, domain outside mvc4, SimpleMembership

I like having the domain outside of MVC4. Hence my migrations folder is in domain project. As everyone else I would like to seed table created by web security using: ...
1
vote
0answers
174 views

EntityFramework migrations tries to create an existing database

We're deploying a simple ASP.NET MVC application to on of our staging servers and we're getting the following error when EntityFramework tries to migrate the existing database. CREATE DATABASE ...
2
votes
1answer
1k views

EF5 Code First Migrations: “Column names in each table must be unique” error after using RenameColumn

We're using Entity Framework 5.0 Code First and Automatic Migrations. I had a class like so: public class TraversalZones { public int Low { get; set; } public int High { get; set; } }​ ...
0
votes
1answer
158 views

Queries fail with “invalid column” errors after running EF5 data migrations to a SQL Azure DB

I modified the user class and created a data migration in Visual Studio 2012's Package Manager Console. The data migration included the following script: CreateTable( ...
1
vote
1answer
140 views

Unable to apply code first migrations to mysql database

I am working on asp.net mvc with EF code first model. I am trying to apply migrations using EF code first to my project. I am using MySql database. currently i am using EF 4.3.1 version and mysql ...
0
votes
2answers
66 views

How should I model friendships between users with EF code first?

I'm tring to figure out how to represent friendships between users with Entity Framework (5) Code First. My initial idea was to create a class Friendship which contains references to two User ...
0
votes
1answer
238 views

Entity Framework Migrations: INSERT statement conflicted with the FOREIGN KEY constraint

I have the following models public class User { public int UserID { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Email { get; ...
0
votes
1answer
30 views

Seeding an Entity Database with Related Tables

I read through the other answers that I could find, but none of them helped me. I am quite new to .NET, Entity, C# etc. So I hope you'll forgive me. I am trying to create a "Seed" file and I get ...
1
vote
0answers
51 views

EF Code First Migrations Developer Conflicts

We are running into some conflicts when using EF Migrations with 2 or more developers. I'm curious if anyone has a better solution than what we ended up with to resolve these issues. First, here is ...
1
vote
1answer
122 views

How does Entity Framework Migrations know which version the database is at?

Using Entity Framework 5 code first, I'm wondering how EF Migrations decides that the target database is at a certain migration version? That is, I've emptied my database (deleted all tables) and am ...
1
vote
2answers
746 views

The navigation property 'SenderId' is not a declared property on type 'Conversation'

When I try to do Update-Database, I get this error: "The navigation property 'SenderId' is not a declared property on type 'Conversation'. Verify that it has not been explicitly excluded from the ...
0
votes
1answer
107 views

Conditional Seed with entity framework migrations

For a while I've been trying to find a solution as to how I could use the seed method in the migration configuration without fear of updated data being overwritten next time the seed method is run. ...
0
votes
1answer
272 views

Delete a specific EntityFramework Migration

Is there a way to delete an automatic migration in the migration history of a project using Entity Framework Migrations? This is a code-based EF project that's has a mix of explicit and automatic ...
0
votes
0answers
66 views

Calling Configuration.Seed during migration downgrade

I had a problem similar to Script EF migration seed from Configuration class to which I applied a solution similar to the answer on that question. The remaining problem however is that the Seed method ...
4
votes
3answers
327 views

EF5 Migrations - Duplicate/Re-defined variable bug when dropping constraints | Issue with usage of SQL GO command

Background: We have a project that uses ef-migrations containing multiple (read ~60) migrations created over a long period of development. Naturally, some of these migrations also involve: dropping ...
6
votes
1answer
387 views

Can't update database using EF Migrations after updating to EF 6.0.0-alpha

After updating my Entity Framework to version 6.0.0-alpha1 I cant update database. This is the error I'm getting: PM> update-database -verbose Using StartUp project 'DataCenter'. Using NuGet ...
8
votes
1answer
259 views

Consolidating EF migrations into new InitialCreate

I have been using EF migrations for some time now and have more than 100 migration files in my project. I would like to consolidate these into a single migration before moving forward - ie I want to ...
0
votes
1answer
225 views

Entity Framework 5 Migrations going to production (File System Publishing)

I'm not sure about what changes should I care about when going to production using Migrations and the publish option through File System. I mean, for example, I guess I should not use any initializer ...
0
votes
0answers
220 views

Multiple MigrateDatabaseToLatestVersion Initializers from config file in Entity Framework 5 and migrations

I've a solution with a separate project for unit testing. I want an initializer (with particular Seed) for unit tests project, another one (with different Seed) for the application, and yet another ...
0
votes
1answer
1k views

Entity Framework 5 Code First Migrations: Get database script

I've a project following the course of John Papa about SPA. So, my architecture is as follows: **proj.Data.Data** /Configuration Mappings of the entities with Fluent ProjContext.cs ...
3
votes
1answer
1k views

Entity Framework Migrations renaming tables and columns

I renamed a a couple entities and their navigation properties and generated a new Migration in EF 5. As is usual with renames in EF migrations, by default it was going to drop objects and recreate ...
0
votes
1answer
135 views

Package Manager Console crashes when using Add-Migration

I am using Package Manager Console to add migrations to my database and for some reason it just freezes and does nothing. The only way to stop it and continue using it is to close down Visual Studio ...
0
votes
0answers
10 views

Do I check in migration files created by Migrations

I mean the files that are created when doing Add-Migration, Update-Database?
0
votes
0answers
102 views

EF Code First Migrations Strange Behaviour

I have this scenario. I implemented Code First Migrations on a project in this way I set AutomaticMigrationsEnabled to true and created my database. 2 fellow developers got my code and it all works ...

1 2 3 4