我制作了一个程序,使用带有sql身份验证的c#和sql server,它在我的设备中正常工作,但是在使用Innosetup制作程序设置文件.exe扩展名后,我无法连接到我的数据库,我尝试的是导出我的数据库在脚本中,并在另一台设备上运行脚本,但它不起作用,我想我需要创建端口或其他东西来连接到这个数据库,或者在我的 app.config 中更改服务器名称
这是我的连接字符串
<connectionStrings>
<add name="MarketDatabaseEntities" connectionString="metadata=res://*/AmanjCenter2Entity.csdl|res://*/AmanjCenter2Entity.ssdl|res://*/AmanjCenter2Entity.msl;provider=System.Data.SqlClient;provider connection string="data source=RABAR;initial catalog=MarketDatabase;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>