前言
應(yīng)用程序集成數(shù)據(jù)庫是許多軟件項目的關(guān)鍵方面。無論構(gòu)建的是Web應(yīng)用程序、桌面應(yīng)用程序還是移動應(yīng)用程序,高效無縫地與數(shù)據(jù)庫集成,對于存儲、檢索和操作數(shù)據(jù)都至關(guān)重要。本文將介紹數(shù)據(jù)庫與C#應(yīng)用程序集成的幾種方法與使用注意事項。
數(shù)據(jù)庫
開發(fā)應(yīng)用程序時,我們會為應(yīng)用選擇使用的數(shù)據(jù)庫,這是至關(guān)重要的一步。通常會根據(jù)實際情況考慮一些因素,如可擴展性、性能、數(shù)據(jù)結(jié)構(gòu)、復雜性和預算等。以下也是一些常用選項:
1、關(guān)系數(shù)據(jù)庫
SQL Server: 微軟提供的功能豐富的關(guān)系數(shù)據(jù)庫管理系統(tǒng)。MySQL、PostgreSQL、Oracle、Informix等: 使用廣泛且具有強大的社區(qū)支持的關(guān)系數(shù)據(jù)庫。
2、非關(guān)系數(shù)據(jù)庫(NoSQL)
Redis: 一個高性能的內(nèi)存數(shù)據(jù)存儲,用于緩存和實時分析。MongoDB: 一個流行的面向文檔的NoSQL數(shù)據(jù)庫。Memcached: 一種開源的高性能分布式內(nèi)存對象緩存系統(tǒng)。
3、關(guān)系映射框架
Entity Framework Core: 由微軟開發(fā)的輕量級 ORM 框架。SqlSugar:一款 .NET 開源ORM框架。Chloe: 一款 .NET 輕量級的 ORM 框架。
方法簡介
1、ADO.NET
ADO.NET 是NET框架中,用于訪問關(guān)系數(shù)據(jù)庫中數(shù)據(jù)的組件。它提供了一套豐富的功能,可直接使用 SQL 命令處理數(shù)據(jù)庫交互。它提供了對數(shù)據(jù)庫交互的低級控制,可能很冗長并且容易出錯。以下是連接到SQL Server數(shù)據(jù)庫的簡單示例:using Microsoft.Data.SqlClient;
using System.Xml;
namespace Fountain.WinConsole.OtherDemo
{
internal class Program
{
static void Main(string[] args)
{
// 創(chuàng)建 Connection 對象
using (SqlConnection sqlConnection = new SqlConnection())
{
// 通過 ConnectionString 屬性連接數(shù)據(jù)庫
sqlConnection.ConnectionString = "server=127.0.0.1,1433;Enlist=true;Pooling=true; uid=sa;pwd=sa123456;connection Timeout=30;database=CRMS;Max Pool Size=600";
// 創(chuàng)建一個 SqlCommand 對象
SqlCommand sqlCommand = sqlConnection.CreateCommand();
// 命令的類型為Text
sqlCommand.CommandType = System.Data.CommandType.Text;
// 執(zhí)行命令SQL語句
sqlCommand.CommandText = "select * from user";
// 執(zhí)行命令返回 DataReader
SqlDataReader sqlDataReader = sqlCommand.ExecuteReader();
// 輸出標題
Console.WriteLine($"|{"編號",-20}|{"名稱",20}|");
while (sqlDataReader.Read())
{
// 輸出行結(jié)果
Console.WriteLine($"|{sqlDataReader["Code"],-20}|{sqlDataReader["Name"],20}|");
}
}
}
}
}
2、Entity Framework Core
Entity Framework Core 是輕量化、可擴展、開源和跨平臺的常用 Entity Framework 數(shù)據(jù)訪問技術(shù)。它允許我們使用特定的對象和LINQ查詢來處理數(shù)據(jù)庫,無需編寫原始SQL查詢。以下是使用 EF Core 的示例:using Microsoft.EntityFrameworkCore;
using System.Xml;
namespace Fountain.WinConsole.OtherDemo
{
internal class Program
{
static void Main(string[] args)
{
using (var context = new UserDbContext())
{
var entity = new UserEntity { Name = "admin" };
context.UserEntities.Add(entity);
context.SaveChanges();
}
}
}
/// <summary>
/// 用戶實體
/// </summary>
public class UserEntity
{
/// <summary>
/// 編碼
/// </summary>
public int Code { get; set; }
/// <summary>
/// 名稱
/// </summary>
public string Name { get; set; }=string.Empty;
}
/// <summary>
///
/// </summary>
public class UserDbContext : DbContext
{
public DbSet<UserEntity> UserEntities { get; set; }
/// <summary>
///
/// </summary>
/// <param name="options"></param>
protected override void OnConfiguring(DbContextOptionsBuilder options)
{
string connectionString = "Server=127.0.0.1;Database=CRMS;User Id=sa;Password=sa123456;";
options.UseSqlServer(connectionString);
}
}
}
3、Dapper
Dapper 是一個專注于原始性能、簡單易用、輕量級的ORM框架。它提供了擴展方法 IDbConnection,將數(shù)據(jù)庫查詢映射到對象或動態(tài)類型。Dapper 需要手動編寫SQL語句,提供了更好的性能。以下是使用Dapper的示例:using Dapper;
using System;
using System.Data;
using System.Data.SqlClient;
namespace Fountain.WinConsole.OtherDemo
{
internal class Program
{
static void Main(string[] args)
{
string connectionString = "Server=127.0.0.1;Database=CRMS;User Id=sa;Password=pwd123456;";
using (IDbConnection connection = new SqlConnection(connectionString))
{
var result = connection.Query<UserEntity>("select * from user");
foreach (var entity in result)
{
Console.WriteLine($"{entity.Code}, {entity.Name}");
}
}
}
}
/// <summary>
/// 用戶實體
/// </summary>
public class UserEntity
{
/// <summary>
/// 編碼
/// </summary>
public int Code { get; set; }
/// <summary>
/// 名稱
/// </summary>
public string Name { get; set; }
}
}
4、SqlSugar
SqlSugar 是一款非常輕量級并且特別強大的ORM,支持常見的關(guān)系型數(shù)據(jù)庫如 SQL Server、Oracle、MySQL等。擁有媲美原生的性能且能滿足各種需求的功能,簡單易用。以下是使用 SqlSugar 的示例:using SqlSugar;
using System.Data;
using System.Xml;
using static System.Net.Mime.MediaTypeNames;
namespace Fountain.WinConsole.OtherDemo
{
internal class Program
{
static void Main(string[] args)
{
//數(shù)據(jù)庫鏈接
var db = new SqlSugarClient(new ConnectionConfig()
{
ConnectionString = "Server=127.0.0.1;Database=CRMS;User Id=sa;Password=sa123456;",
//指定數(shù)據(jù)庫類型
DbType = SqlSugar.DbType.SqlServer,
//鏈接使用完后是否自動釋放
IsAutoCloseConnection = true,
});
// 獲取
UserEntity userEntity= db.Queryable<UserEntity>().First();
// 輸出
Console.WriteLine($"{userEntity.Code}, {userEntity.Name}");
// 按任意鍵推出
Console.ReadLine();
}
}
/// <summary>
/// 用戶實體
/// </summary>
public class UserEntity
{
/// <summary>
/// 編碼
/// </summary>
public int Code { get; set; }
/// <summary>
/// 名稱
/// </summary>
public string Name { get; set; }=string.Empty;
}
}
使用事項
無論我們選擇哪種方法,在使用時都須考慮以下一些行為規(guī)范:1、參數(shù)化查詢:始終使用參數(shù)化查詢來防止SQL注入攻擊。3、錯誤處理:實施適當?shù)腻e誤處理和日志記錄,以處理與數(shù)據(jù)庫相關(guān)的異常。4、優(yōu)化:優(yōu)化數(shù)據(jù)庫查詢和索引以獲得更好的性能。5、安全性:應(yīng)用適當?shù)陌踩胧缂用芎驮L問控制來保護敏感數(shù)據(jù)。
小結(jié)
以上是對應(yīng)用程序與數(shù)據(jù)庫集成的簡單介紹,了解權(quán)衡和最佳實踐對于成功集成至關(guān)重要。通過選擇正確的數(shù)據(jù)庫和集成策略,您可以確保高效的數(shù)據(jù)管理,并提高C#應(yīng)用程序的整體性能。
該文章在 2024/6/12 9:17:31 編輯過