在 WinForms 中連接 SQL Server 的方法主要有以下幾種:
string connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
// 在這里執行 SQL 查詢或操作
}
string connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password";
using (DbContext context = new DbContext(connectionString))
{
// 在這里執行數據庫操作,例如:
var result = context.Database.SqlQuery<YourEntityType>("SELECT * FROM YourTable");
}
需要先安裝 Entity Framework NuGet 包,并創建相應的數據上下文類。
string connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password";
using (DataContext context = new DataContext(connectionString))
{
// 在這里執行數據庫操作,例如:
var result = context.GetTable<YourEntityType>().ToList();
}
需要先創建 LINQ to SQL 類型映射,然后使用 DataContext 類連接數據庫。
根據具體的需求和項目配置,選擇適合的方法連接 SQL Server。