Code First Migrations is a feature of Entity Framework to detect, script and execute schema updates of databases created with the Code-First approach.
0
votes
0answers
25 views
Debug code-first Entity Framework migration codes
I'm using Entity Framework code first in my website and I'm just wondering if there is any way to debug the migration codes. You know, like setting breakpoints and stuff like this.
I'm using Package ...
1
vote
1answer
47 views
Code First relationship one to many / many to many
I have a table restaurant. A restaurant can have multiple specialties. And specialties are for example chinees, spahnish, greeks, etc.
Restaurant table/class:
[Table("Restaurant")]
public class ...
0
votes
1answer
20 views
Entity Framework Package Migration Issue
I am trying to migrate an entity for my MVC application. I am totally new at this and know very little about .NET MVC. The issue I am having is that when I run the migration I get the error "Keyword ...
1
vote
1answer
43 views
ASP.NET MVC 4, Code First - Quickest way to purge test data
My ASP.NET MVC 4 Code First app creates seed data using Migrations - works well.
Over time other test data I enter myself builds up.
What is the quickest way to delete this test data and return to ...
1
vote
1answer
18 views
Adding 'GO' statements to Entity Framework migrations
So I have an application with a ton of migrations made by Entity framework.
We want to get a script for all the migrations at once and using the -Script tag does work fine.
However...it does not add ...
1
vote
2answers
49 views
Scripting EF Add-Migration into an automated build task
I have all my ef code first migrations in a separate assembly called Migrations
From the package manager console I type Add-Migration xyz which scaffolds up a migration
Is it possible to do this ...
0
votes
0answers
34 views
MVC3 Application Trying to Use Code Migrations After Deploy
I am having problems with my application attempting to create a table after I published changes.
I added some new tables, controllers, views, etc. Pretty standard stuff.
I initially built this in ...
0
votes
0answers
10 views
The model backing the 'SisContext' context has changed since the database was created. Consider using Code First Migrations to update the database
When I try to Login with details that are available in database(SIS) I get this error.
The model backing the 'SisContext' context has changed since the database was created. Consider using Code First ...
0
votes
1answer
12 views
Migrations: purpose of the startup project
When carrying out an update-database in the package manager you have to select a project as the startup project and the output from the command tells you what the startup project it is using. My ...
0
votes
1answer
21 views
How to trigger migration with entity framework
I want to trigger database migration through code to latest version.
I have already configured the migrations and they work fine but the only way I can get them to migrate is by querying the database ...
0
votes
0answers
27 views
Mapping Entity Framework Code First to dynamically named tables
I'm currently using EF5 in a project with a legacy database. The legacy application uses dynamically build tables (xxxx_year, yyyy_year) to store "year based data". I've been trying to find a way to ...
0
votes
0answers
22 views
Entity Framework migrations not working after upgrading from EF 4.3 to 5.0
I have a fully working Entity Framework 4.3 project with migrations which I have just upgraded to EF 5.0.
I have now added a couple more migrations with EF 5. Everything works if I upgrade from an ...
0
votes
3answers
64 views
ASP.NET MVC 4, Migrations - How to run 'update-database' on a production server
I can use package manager to run 'update-database -verbose' locally.
Probably a stupid question but I can't find it online - once my website is deployed - how can I run this manually on the server?
...
0
votes
1answer
31 views
ASP.NET MVC 4 - WebSecurity.InitializeDatabaseConnection called multiple times error
I have a Seed method in my Migrations/Configuration.cs:
protected override void Seed(MVC4App.Models.MVC4Entities context)
{
try
{
// Initialize database for Account
...
0
votes
0answers
9 views
Entity framework Entities in 'xxContext.x' participate in the 'x_y' relationship error
before me one developer used Entity framework code first .And i am not good at the EF code first.So when i try to insert my code give this error :
Entities in 'TourismContext.HotelOrders' ...
0
votes
0answers
41 views
EF5 Code First Seeding. Unable to create a constant value of type Attachment Only primitive types or enumeration types are supported in this context
After hours of hair pulling/head banging session with my new friend, Code First. I finally gave up. I am trying to write a code to seed my database so in case I messed up something while changing ...
0
votes
1answer
202 views
Entity Framework 5, Migrations, MVC 4, update-database -force - best way to run on server
Visual Studio MVC 4 web app, SQL Server 2008 R2, Entity Framework 5
I have automatic migrations enabled (in configuration.cs):
public Configuration()
{
AutomaticMigrationsEnabled = true;
...
1
vote
1answer
23 views
How to specify a column Name for EF5 navigation property
I'm using EF5 code first to generate my database schema, but my new navigation property is being named in an undesirable way in the table. here is the model I'm working with.
public class User
{
...
0
votes
0answers
13 views
Migrations that are executed on each database update
I was wondering if there is a way to always run a migration when you update a database.
E.g. to (re)create a stored procedure or function.
Default, once you've run a migration you need to create ...
0
votes
0answers
32 views
update sql through code first automatically global.asax
I am working in mvc4 application using code first approach and entity frame work. If I manually run update command in package manager console, the model gets updated and database too. But i want the ...
0
votes
1answer
20 views
EF5 code first migrations byte[] column
I am trying to create a data model that will work on both SQL Server 2008/2012 and SQLCE4. The problem i have is with binary data columns.
SQLCE requires use of the 'image' column type, but this is ...
0
votes
1answer
54 views
Database.SetInitializer to null not working Entity Framework 4.3.1 Code First
I have a context class that inherits from an abstract base AuditableDbContext : DbContext. The AuditableDbContext takes two parameters, one for the auditor and one for the context to audit into.
In ...
0
votes
2answers
38 views
Code First database design issue - addresses
I have a POCO that represents a form a user fills out. There are about 10 different addresses on the form, so I separated them out into a separate address POCO. The problem is how to set up the ...
0
votes
0answers
10 views
System.Resources.MissingManifestResourceException when Updating database
I moved a web application I am working on from one machine to another. It is built using .Net MVC and Entity Framework but when I execute the Update-Database command so that the database is updated. I ...
0
votes
1answer
26 views
add-migration causing a “Could not load assembly” error
Here's what I am looking at
PM> Add-Migration AddedSubdivion -StartUpProjectName Data -Verbose
Using StartUp project 'Data'.
Using NuGet project 'Registry'.
Could not load assembly 'Registry'. (If ...
0
votes
1answer
40 views
Error while trying to update the database on a migration?
I'm following through an example on a mvc course on pluralsight. I'm getting an error when trying to do a database migration.
Here is my class:
public class Department
{
public virtual int Id ...
3
votes
1answer
77 views
Why is Entity Framework losing my indexes?
When I use a database initializer like DropCreateDatabaseAlways or MigrateDatabaseToLatestVersion to create my Entity Framework (5.0.0) database, the resulting schema does not include the indexes that ...
0
votes
1answer
42 views
Entity Framework Code First and WebMatrix membership
I started a new project with EntityFramework 5.0 Code First with Automatic Migration and MVC4 with Simple Membership.
And I modified the Configuration.cs with the following:
protected ...
1
vote
0answers
40 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
1answer
75 views
Adding fields to webpages_Membership SimpleMembershipProvider
Is it possible to add fields/columns to webpages_Membership?
[Table("webpages_Membership")]
public class Membership
{
public Membership()
{
Roles = new List<Role>();
OAuthMemberships = ...
13
votes
1answer
85 views
What does “Reverting automatic migration” mean?
After changing branches in source control, running Update-Database to roll back to a previous migration, EF will sometimes display the text "Reverting automatic migration", like below:
Reverting ...
0
votes
1answer
31 views
EF Code First - get rid of the migration files
As I'm progressing with my project I add more and more entities/properties/relationships. At the moment I have about 30 migration files, each describes a step that I added as a migration.
Is there a ...
0
votes
1answer
36 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:
...
0
votes
1answer
171 views
Custom simple membership provider adding row
I have a custom SimpleMembershipProvider and i have defined all tables that the SimpleMembershipProvider requires, like webpages_Membership:
[Table("webpages_Membership")]
public class Membership
{
...
1
vote
1answer
72 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
1answer
22 views
What does PluralizingEntitySetNameConvention do?
I'm learning code first and I'm going over the default conventions (http://msdn.microsoft.com/en-us/library/gg696316(v=vs.103).aspx), and I'm wondering what PluralizingEntitySetNameConvention does. I ...
0
votes
1answer
38 views
EF5 Code First Automatic Migrations to Azure Database
I posted a more detailed question about this but am not getting many responses. So, in the simplest terms, has anyone successfully set up automatic migrations on an Azure database using EF 5.0 Code ...
0
votes
0answers
19 views
How would EF find Down() migration on deployment of previous version?
We have a site that uses code first migrations and at the moment the deployment is partly manual, in that Up scripts are applied by hand after the new site folder is in place on the server.
I want to ...
0
votes
0answers
105 views
Entity Framework Code First Automatic Migrations to Azure Database
I'm using EF 5.0 Code First and am testing automatic migrations. Everything works fine when I'm working locally but when I upload the database to Azure and change the connection string accordingly ...
0
votes
3answers
353 views
EF 5 Enable-Migrations : No context type was found in the assembly
I have 4 projects :
Toombu.Entities : all models are there
Toombu.DataAccess: Mapping, Repository and ToombuContext
Toombu.Logique : Logic of my application
Toombu.Web : MVC 4 application. With all ...
0
votes
1answer
49 views
Seeding users with membership provider
I'm trying to seed some users with the SimpleMembershipProvider. I have added a few columns in the UserProfile table, like a mobile number. When i try to add a user with a mobile number, the compiler ...
3
votes
1answer
155 views
Entity Framework Migrations - Managing In Branches
I've been using Entity Framework code first migrations for a while now on a brand new project, and they've been working fine so far on a the main trunk version of the application.
However, we're now ...
0
votes
2answers
69 views
The name 'Roles' does not exist in the current context
I have ported Migrations from a web app to a class library project.
Everything works fine, except that I can't call the static class Roles.
I have included the namespace using System.Web.Security; ...
1
vote
0answers
92 views
How to map existing table with EF 5 Code First and _do_ not create/touch it when running update-database?
I have an EF 5 Code First VS 2012 project and some entites. I use update-database to generate/seed the tables and data. However I have 4 existing tables with data, and I would like to map this tables ...
1
vote
0answers
47 views
Why I can't create a database using CodeFirst on Visual Studio 2012?
I am following this tutorial to learn how to use Code First (CF) with Entity Frame Visual Studio 2012. Unfortunately, I don't know why I can't create a database using LocalDB on VS2012. I already ...
0
votes
2answers
54 views
EF Code first - forgot to run “Add-Migration”
I have a Web project which has already been published to the production server. On my development machine, I made some changes on the model class and ran Update-Database without run Add-Migration. I ...
1
vote
0answers
100 views
EF5 Code First The ALTER TABLE statement conflicted with the FOREIGN KEY constraint
I found several questions on here relating to this but I'm not quite there. I'm trying to add a second UserProfile property to the already existing CourseRegistration class. When I try to perform the ...
0
votes
1answer
35 views
Id's not updating when using EntityFramework code-first
after an earlier question i'm stil struggling with EF Code-First;
I have 3 (in this example, in practice there are more) where 1 table uses multiple Id's for accessing other tables.
I have 2 ...
0
votes
0answers
29 views
Login fail error when using MigrateDatabaseToLatestVersion but not CreateDatabaseIfNotExists
Building a WPF EF code first solution, I moved the solution to a new machine with a new Sql Server instance. Migration was enabled on the previously so there is the configuration folder and ...
0
votes
2answers
28 views
Querying multiple schemas using EF
I think this should be easy, but I cannot figure it out.
I have an existing (legacy) database that I'm querying using EF, I have created a couple of POCO classes and as long as issue queries against ...



