'已通过[Username]执行命令尝试删除数据库:drop database [DbName]事务在触发器中结束。该批次已中止

时间:2018-06-20 04:04:25

标签: c# entity-framework sql-server-2012 asp.net-mvc-5

我在c# / asp.net mvc 5 / EF6中的项目遇到问题。 当我尝试在“ Web发布活动”中在服务器(webio.pl)上发布我的作品时,收到消息“发布成功”,但是当我尝试使用此连接字符串

编译项目时
    <add name="AppConnectionString" connectionString="Data Source=mssql4.webio.pl,2401;Database=[Database_name];Uid=[Username];Password=[Password];" providerName="System.Data.SqlClient" />

我有此错误: screenshot

System.Data.SqlClient.SqlException: 'Database Dropped Attempted by 
[UserName here] executing command: drop database 
[Database name here]
The transaction ended in the trigger. The batch has been aborted.'

但是当我将连接字符串更改为本地数据库时,一切运行正常

<add name="AppConnectionString" connectionString="Data Source=DESKTOP-VR8CI70;Initial Catalog=Portfolio_test_database;Integrated Security=True;Pooling=False" providerName="System.Data.SqlClient" />

我在互联网上找不到任何答案:(

0 个答案:

没有答案