启用迁移不起作用

Posted

技术标签:

【中文标题】启用迁移不起作用【英文标题】:Enable Migrations Not working 【发布时间】:2014-09-18 15:22:59 【问题描述】:

我有一个包含三层的应用程序。我正在使用 EntityFramework 6.1 并使用现有数据库进行代码优先迁移。下面给出了三层:

1.表示层:ConceptuCodeFirstMigrationDemo 为了简单起见,只是一个控制台应用程序

数据层由Context和Initializer组成。代码如下:

     namespace ConceptuCodeFirstMigrationDemo.Data.DataContext
        
          using System;
          using System.Data.Entity;
          using System.ComponentModel.DataAnnotations.Schema;
          using System.Linq;
          using ConceptuCodeFirstMigrationDemo.Domain;

    public partial class ConceptuContext : DbContext,IDisposable
    
        public ConceptuContext()
            : base("name=ConceptuContext")
        
        
       public virtual DbSet<User> Users  get; set; 
       protected override void OnModelCreating(DbModelBuilder modelBuilder)
        
                modelBuilder.Entity<User>()

                .WithRequired(e => e.User)
                .HasForeignKey(e => e.CreatedBy)
                .WillCascadeOnDelete(false);

         
       
      

ConceptuInitializer.Cs

namespace ConceptuCodeFirstMigrationDemo.Data.DataContext

   public class ConceptuInitializer:      System.Data.Entity.CreateDatabaseIfNotExists<ConceptuContext>
    
    

应用配置:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <entityFramework>
    <contexts>

        <context type="ConceptuCodeFirstMigrationDemo.Data.DataContext.ConceptuContext, ConceptuCodeFirstMigrationDemo.Data">
          <databaseInitializer type="ConceptuCodeFirstMigrationDemo.Data.DataContext.ConceptuInitializer, ConceptuCodeFirstMigrationDemo.Data" />
        </context>
    </contexts>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
  <connectionStrings>
    <add name="ConceptuContext" connectionString="data source=AMITABHA-PC;initial catalog=Conceptu;user id=sa;password=lovediya;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
  </connectionStrings>
</configuration>

域层:由实体类组成,例如用户

在我尝试使用 Enable-Migrations 启用迁移时编写新类后 显示 在程序集“ConceptuCodeFirstMigrationDemo”中找不到上下文类型。

在我尝试了以下命令后: Enable-Migrations -ContextTypeName ConceptuCodeFirstMigrationDemo.Data.DataContext.ConceptuContext

这显示以下错误 在程序集“ConceptuCodeFirstMigrationDemo”中找不到上下文类型“ConceptuCodeFirstMigrationDemo.Data.DataContext.ConceptuContext”。

在我尝试了以下命令之后 Enable-Migrations ConceptuCodeFirstMigrationDemo.Data.DataContext.ConceptuContext

显示如下错误

Enable-Migrations:找不到接受参数 'ConceptuCodeFirstMigrationDemo.Data.DataContext.Concept 的位置参数 上下文'。 在行:1 字符:18 + 启用迁移

【问题讨论】:

Presententation LayerData LayerDomain Layer这三个层分别位于不同的项目中吗? 是的,他们在不同的项目中。 【参考方案1】:

试试这个。

Enable-Migrations -ContextTypeName ConceptuCodeFirstMigrationDemo.Data.DataContext.ConceptuContext -ProjectName ConceptuCodeFirstMigrationDemo

【讨论】:

以上是关于启用迁移不起作用的主要内容,如果未能解决你的问题,请参考以下文章

实体框架代码优先 - 初始代码迁移不起作用

使用 Parse-Server 时 Parse LocalDataStore 不起作用 - “方法需要启用固定。”

启用主题的 Windows XP/Vista 中的 TAnimate 将不起作用 [关闭]

领域迁移不起作用

外键代码在 Laravel 8 的迁移中不起作用

Laravel 迁移不起作用