在C#中使用SQLSugar庫可以方便地操作數據庫。SQLSugar是一個基于ORM(對象關系映射)的數據庫訪問庫,可以幫助開發人員簡化數據庫操作。
以下是SQLSugar的基本用法示例:
string connectionString = "Data Source=server;Initial Catalog=database;User Id=user;Password=password;";
SqlSugarClient db = new SqlSugarClient(connectionString);
var userList = db.Queryable<User>().ToList();
User user = new User()
{
Name = "Alice",
Age = 25,
Email = "alice@example.com"
};
int id = db.Insertable(user).ExecuteReturnBigIdentity();
db.Updateable<User>().SetColumns(it => new User() { Name = "Bob" }).Where(it => it.Id == 1).ExecuteCommand();
db.Deleteable<User>().Where(it => it.Id == 1).ExecuteCommand();
通過以上示例,可以簡單地了解SQLSugar庫的基本用法。開發人員可以根據具體的需求和業務邏輯進行更多復雜的數據庫操作。