我已成功部署我的应用程序,只需左键单击项目文件夹并发布。我还填写了“设置”选项卡中的服务器和SQL服务器信息。一切都还可以但是当我用sql server管理工具查看我的服务器时,我看不到我的DB文件,但我也可以CRUD ......
我的数据库在哪里创建?
这是部署后我的配置文件连接infor,它似乎已更改为我的实时DB,这是正确的。
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=94.***.***.***;Persist Security Info=True;User ID=sa;Password=*******" providerName="System.Data.SqlClient" />
<add name="DefaultConnection_DatabasePublish" connectionString="Data Source= ***********;Persist Security Info=True;User ID=sa;Password=******" providerName="System.Data.SqlClient" />
</connectionStrings>