我在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" />
我在互联网上找不到任何答案:(