我正在使用SQL Server .mdf
数据库文件创建C#应用程序。我需要将其安装在用户的计算机上,但是在连接数据库时遇到问题,该计算机没有SQL Server。
系统将仅在本地计算机上。
连接到我的.mdf
数据库文件的最佳选择是什么?
连接到数据库:
public Banco()
{
string Caminho = Directory.GetParent(Directory.GetCurrentDirectory()).Parent.FullName + @"\AppData\Banco.mdf";
string sStringConexao = @"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=" + Caminho + ";Integrated Security=True";
_conexao = new SqlConnection(sStringConexao);
_comando = new SqlCommand();
_comando.Connection = _conexao;
}