我开始学习 SQL Server。我想使用 c# 连接 SQL Server,但出现以下错误。
“SqlConnection”是一个“命名空间”,但用作“类型”
为什么我会收到此错误?
private void button1_Click(object sender, EventArgs e)
{
String baglanti = "Data Source=.; İnitial Catalog=Northwind;Integrated Security=true";
SqlConnection baglan = new SqlConnection(baglanti);
}