在 C# 中連接 SQL Server 數據庫的方法通常有兩種:使用 ADO.NET 和 Entity Framework。
using System.Data.SqlClient;
string connectionString = "Data Source=YourServerName;Initial Catalog=YourDatabaseName;User ID=YourUsername;Password=YourPassword";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
// 執行 SQL 查詢、插入、更新、刪除等操作
connection.Close();
}
using System.Data.Entity;
public class YourDbContext : DbContext
{
public YourDbContext() : base("name=YourConnectionStringName") { }
public DbSet<YourEntity> YourEntities { get; set; }
}
在應用程序中使用 DbContext 連接數據庫:
using (var dbContext = new YourDbContext())
{
// 查詢數據
var data = dbContext.YourEntities.ToList();
// 插入數據
var newEntity = new YourEntity { Property1 = value1, Property2 = value2 };
dbContext.YourEntities.Add(newEntity);
dbContext.SaveChanges();
// 更新數據
var entityToUpdate = dbContext.YourEntities.Find(id);
entityToUpdate.Property1 = newValue;
dbContext.SaveChanges();
// 刪除數據
var entityToDelete = dbContext.YourEntities.Find(id);
dbContext.YourEntities.Remove(entityToDelete);
dbContext.SaveChanges();
}
這是連接 SQL Server 數據庫的兩種常用方法,具體使用哪種取決于項目的需求和復雜度。