Tagged Questions
0
votes
1answer
73 views
Migration For a Modular System
I want to create a modular system.I have a problem about concept of migration in my project.
I need a series principle about create Modules and do migration. For example assume I am creating a ...
0
votes
1answer
111 views
Entity Framework MigrationSqlGenerator for SQLite
is there a MigrationSqlGenerator for SQLite to use with entity framework? I only found one from devart which is commercial.
No MigrationSqlGenerator found for provider 'System.Data.SQLite'. Use
...
0
votes
1answer
28 views
EF Code First migrations - how to add seed to my migration?
I already have few migrations, and now I am adding another migration, but this time I want to add seed to it. I tried adding this near my Up() and Down() methods:
protected override void Seed(ScykDb ...
0
votes
1answer
79 views
EF Code First Migrations - not detecting changes
Preword: In my database table i have two fields: (string)(FK)UserPayoffData_UserName and (int)UserPayoffDataUserName. I made a mistake, and in reality, i would like it to be only single property, ...
0
votes
2answers
375 views
EF code first - Model compatibility cannot be checked because the database does not contain model metadata
I have enabled automatic migrations. Then, I deleted my whole db. Next, i executed Update-database from command console, and it recreated my db. Then, I started my application only to see this error:
...
0
votes
0answers
34 views
Is it possible to generate migration only for a part of model?
I would like to generate migrations using custom VSIX plugin and only for a part of model. I found out I can filter generated code in class inherited from CSharpMigrationCodeGenerator by overridnig ...
1
vote
0answers
20 views
EF Migrations in business project used by several applications [duplicate]
I have a VS solution with 3 projects:
AppName.Client
AppName.Business
AppName.Web
Client is a WPF client distributed to a lot of users. Web is a website with central data storage (SQL Server). ...
1
vote
1answer
161 views
Entity Framework Automatic Migrations Existing Database
I am building an ASP.Net MVC4 web application with Entity Framework 5. I had to use an existing sql server database but also wanted to use Code First, so I followed this tutorial ...
0
votes
0answers
95 views
EF add-migration generates empty migration
I added into my model a new table:
public DbSet<ReturnedTransactions> ReturnedTransactions { get; set; }
And i want my migrations to generate that table for me, so i did:
PM> ...
0
votes
2answers
138 views
Entity framework and migrations - how to update my database on remote server?
I enabled migrations for my entity framework application. Now, i want to update my database on my remote server. I ran this command:
PM> Update-Database -Script
So it generated a sql script. ...
0
votes
1answer
66 views
How to migrate EF Code First database on production server
I read this post about EF code first migration, but it uses 'Package Manager Console' which is not effective on shared hosting. I would like to know how you are deploying EF code first database ...
0
votes
1answer
57 views
Error on adding a migration folder to my solution in “package manager” typing “enable-migration” visual studio 2012
PM> enable-migrations
I get an error(eManager) like this.
I have two projects in my VS solution named as below :
eManager.Domain
eManager.Web
I added reference of eManager.Domain to ...
0
votes
1answer
278 views
Visual studio 2012 migration (Entity Framework) connection string error
I'm using Visual Studio 2012, EF, trying to update my database using the console but it fails.
I get a message that the connection string is incorrect although in reality it is fine.
2
votes
1answer
254 views
How can I disable code first migrations
I have a code-first entity model in EF5. But I want to manage the database changes manually -- I do not want EF to modify my existing database and all its data. But when I make parallel changes in the ...
0
votes
0answers
78 views
Error in Entity Framework - Code First Migrations
After making the migration I was trying to update-database but I am not being able to do so. I have that error:
Cannot find the object "dbo.Livro" because it does not exist or you do not have ...
0
votes
0answers
59 views
Associations using Fluent API giving error when adding a migration: Not picking up derived class's PK (which is PK of base class)
I have a class UserProfile:
public abstract class UserProfile
{
public int UserId { get; set; }
public string UserName { get; set; }
public string FirstName { get; set; }
public ...
0
votes
2answers
307 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 ...
0
votes
1answer
67 views
EF migration seed - Unable to create a constant value of type 'PQS.Model.TranslationItem'
TranslationItem Model:
[DataContract]
public class TranslationItem : CloneableBaseEntity<TranslationItem>, IValidatableObject
{
public int TranslationId { get; set; }
public ...
0
votes
1answer
91 views
EF 5 Add-Migration create a foreign key for GET only property?
Here is my code
The Gallery class
public class Gallery
{
public Guid Id { get; set; }
public virtual ICollection<PhotoGallery> Photos { get; set; }
public List<PhotoGallery> ...
0
votes
0answers
82 views
Migrating production DB from EF4.1 to EF5
I would like to know how to manually migrate a production database used by an MVC3 application utilizing EF 4.1 (“EdmMetadata” based) in Codefirst configuration to EF5 structure using ...
7
votes
1answer
269 views
SQL Azure table not created with EF Migrations
I am using EF migrations in my application with SQL Azure database. It was working fine until I manually dropped a table in SQL Azure. Now when I publish my application that dropped table is not ...
0
votes
1answer
91 views
Entity Framework two DbContext in one database
Present
One MS SQL DataBase 'DB';
DbContext1 with migration;
DbContext2 migration not needed;
Task
How make them live in the same database 'DB'?
How use migration DbContext1 but not to delete ...
0
votes
1answer
107 views
EntityFramework Add-Migration crashes vwdexpress.exe via System.Data.SqlServerCe
Visual Web Developer Express is crashing when I run the EntityFramework 'add-migration' command from the package manager console.
Problem signature:
Problem Event Name: CLR20r3
Problem ...
2
votes
1answer
178 views
Entity Framework Migration Adding Column Twice
I'm running Entity Freamework Code First Migrations. When trying to run the application I get the error: A column ID occurred more than once in the specification. I have AutomaticMigrationsEnabled ...
0
votes
0answers
102 views
Seed Data using EF migrations
I am using EF 5. I would like to be able to seed a database with demo data. The data we have could be somewhat complex given the layout of our database.
When loading data, the process needs to know ...
3
votes
1answer
117 views
How to make use of EF CodeFirst Migrations without hardcoding nameOrConnectionString
How can you make EF migrations work without hardcoding a nameorconnectionstring in the base of the required parameterless constructor?
EF migrations is forcing you to add a default constructor to the ...
1
vote
1answer
117 views
Custom code execution in EF migrations
Working with the Entity Frameworks migrations successfully in our project.
But now I run into a special case where I need to update a table in need of some business logic (located in our application ...
2
votes
0answers
318 views
Asp.net Mvc MigrationSqlGenerator for Postgresql gives me an error
I've disabled automatic migration and I created a new MigrationSqlGenerator for Postgresql:
public Configuration()
{
AutomaticMigrationsEnabled = false;
...
9
votes
2answers
385 views
Migrations in Entity Framework in a collaborative environment
We have multiple developers working on a project that uses Entity Framework 5.0. Every developer uses his own local SQL 2012 database so he can develop and test without impeding others.
At first, we ...
1
vote
0answers
114 views
Entity Framework constraint naming in database
I have a problem with the naming of some primary keys in the database. On my development system the primary key constraints are named PK_FullTableName. Now on a production system the constraints are ...
2
votes
1answer
75 views
Restoring tables in entity framework
I am working with EF very first time. For some reason I was having difficulty to run my application and every time I was getting exception that your model is not synced up with the current database. I ...
1
vote
1answer
272 views
Entity Framework: How to disable model compatibility check in Code First Migrations
I would like to create a database initializer that runs all the pending migrations regardless of whether the model is in the correct state or not. I.e. I want the initializer to run all the migrations ...
3
votes
0answers
178 views
EF migration to Oracle
Is it possible to migrate EF/NHibernate entities to Oracle database with free provider(No Devart)?
I've got this message:
No MigrationSqlGenerator found for provider 'Oracle.DataAccess.Client'. ...
1
vote
1answer
168 views
MVC EF: Discriminator field does not appear if parent class is abstract
I have an entity called Product:
public abstract class Product : Entity
{
public long ProductId { get; set; }
public long Price { get; set; }
public abstract string Name { get; }
}
...
0
votes
2answers
1k views
EF Migrations and context in another dll
I've installed EF 5.0 in my web mvc application, but context is stored in another dll (repository). hen I'm trying to enable migrations I've got error No context type was found in the assembly ...
0
votes
0answers
102 views
DbMigrator.GetPendingMigrations() always empty
i'm using the dbmigrator class to get a list of pending migrations. For some reason it returns no items even though there are pending migrations. Am i missing a step?
var configuration = new ...
0
votes
1answer
163 views
EF 5.0 migration drops enums
I generated a new Migration, but for some reason, it drops all the enums i'm using and doesn't add any support for it in the db schema. Although it is defined in Code-First
These are my enums:
...
0
votes
1answer
142 views
Problems with the DbMigrator class and Entity Framework 5.0 update
Hi I'm working in a MVC3 application and with Code First Migrations to manage my DB. Yesterday I just update my EF library to the 5.0 version. I used to ran in my Global.asax file, specifically in the ...
5
votes
2answers
606 views
Set StartUp Project parameter for Entity Framework migrations
When using EF 4.3.1 migrations every time i need to add a migration or update database i have to use the StartUpProject parameter. Can I set this somewhere so I don't have to keep doing this? I don't ...
14
votes
4answers
3k views
No initial create with Entity Framework migrations
I'm trying to get Entity framework migrations working. I've enabled code first migrations, its created a migrations folder, config file and the mig history table, but no initial create. Am i missing a ...
0
votes
1answer
148 views
Why use Entity framework Migrations
I've started looking into Entity Framework migrations on 4.3.1. Have a few questions:
What's preferred during development? Why should I not just drop and recreate my
database always and then reseed. ...
5
votes
1answer
423 views
Handling enum changes in Entity Framework 5
In this question, I discovered that enum changes are not handled by Entity Framework migrations. In fact, enum changes don't even result in a model changed error, so you can change enums at will with ...
6
votes
1answer
545 views
Does the new Migrations feature of Entity Framework 5 fully support enum changes?
Let's say we have the following simple model:
public class Car
{
public int Year { get; set; }
public string Make { get; set; }
public string Model { get; set; }
public CarType Type { ...
0
votes
1answer
103 views
How to unit test database migrations?
I am about to perform database migrations in MVC .NET. I was wondering how can I unit test this.
For example, I would like to apply the migration in this question: Rename a db column. How could I ...
2
votes
1answer
166 views
EF Migrations on CI Build Server
I run the migrations within Visual Studio's package manager. I am currently on the process of setting up a CI for our project. I was wondering how can you update the database from the CI (since you ...
4
votes
1answer
253 views
Continuous Integration with EF Code First Migrations
I was wondering if I could automate completely code first migrations for continuous integration.
Currently my continuous integration simply simply updates the code changes, however, I manually ...
2
votes
1answer
348 views
EF Migrations migrate.exe generate script
I'm playing around with Entity framework and continuous builds. So far i'm able to run a migration or series of migrations without any problem by using migrate.exe and the appropriate arguments.
...
1
vote
0answers
51 views
EF always generating initial schema
I have been using EF 4.3.1 with much success. Today though as I update one of the tables the whole schema is getting generated instead of only the updated for the single table.
How can I prevent the ...
1
vote
1answer
769 views
how to use ef migration to create database?
I googled migration tutorials. In all af them, first run the application to create database by ef, then enable migration! Is there a way to create database with migration? not with runing the ...
0
votes
1answer
222 views
Force recreate database for Entity to Complex Type conversion
I've got a WCF service using EF (still learning it) to store some own metadata in a database. At some point i realized(requirements changed) I don't need separate entities for some classes and would ...

