zoukankan      html  css  js  c++  java
  • ABP:在多语句事务内不允许使用 CREATE DATABASE 语句

    一、问题

    使用ef codefirst开发,无法创建数据库的问题,如下提示

    复制代码
    Server Error in '/' Application.
    
    在多语句事务内不允许使用 CREATE DATABASE 语句。
    
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    
    Exception Details: System.Data.SqlClient.SqlException: 在多语句事务内不允许使用 CREATE DATABASE 语句。
    
    Source Error: 
    
    
    Line 32:          */
    Line 33:         public ZmBlogDbContext(string nameOrConnectionString)
    Line 34:             : base(nameOrConnectionString)
    Line 35:         {
    Line 36: 
    复制代码

    二、解决方法
    这是 EF 抛出的异常,只要先创建好数据库就可以了

    create database [ZmBlog]

    提示:

    这个错误是在第一次运行abp出现的,创建数据库后,这时要使用 update-database 进行数据迁移,否则基础数据是空的

    解决方案二:

    1、创建ABP空模板后,按F5,生成报:在多语句事务内不允许使用 CREATE DATABASE 语句错误

        解决办法:打开Nugut程序包管理器控制台,默认项目选择:EntityFramework;输入:Update-Database -Verbose

     2、如果出现:Cannot determine a valid start-up project. Using project 'MyPro.EntityFramework' instead. Your configuration file and working directory may not be set as expected. Use the -StartUpProjectName parameter to set one explicitly. Use the -Verbose switch for more information.

    解决办法:Update-Database -StartUpProjectName "MyPro.Web"
    通过StartUpProjectName指定启动项目

  • 相关阅读:
    Linux使用Public Key方式远程登录
    Linux编译安装Mariadb数据库
    Centos7环境搭建lnmp环境
    浅谈Java中的System.gc()的工作原理
    Eclipse快捷键大全(转载)
    java中的参数传递——值传递、引用传递
    Visual Studio 2017 安装后无法创建c++或MFC项目
    ubuntu sendmail配置发送邮件
    ubuntu11.0静态IP地址配置
    cin与cout详解
  • 原文地址:https://www.cnblogs.com/kingreatwill/p/7058090.html
Copyright © 2011-2022 走看看