輕量級ORM框架Dapper應(yīng)用之實(shí)現(xiàn)CURD操作
在上一篇文章中,講解了如何安裝Dapper,這篇文章中將會講解如何使用Dapper使用CURD操作。
例子中使用到的實(shí)體類定義如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DapperApplicationDemo.Model
{
public class User
{
public int UserId { get; set; }
public string UserName { get; set; }
public string Email { get; set; }
public string Address { get; set; }
}
}注意:在使用下面的方法之前要首先引入Dapper的命名空間:Using Dapper;
一、插入數(shù)據(jù)
1、使用匿名類插入數(shù)據(jù)
IDbConnection connection = new SqlConnection(conn);
var result = connection.Execute(
"Insert into Users values (@UserName, @Email, @Address)",
new { UserName = "Tom", Email = "747954712@qq.com", Address = "北京" });查詢數(shù)據(jù)庫:

2、使用實(shí)體類插入數(shù)據(jù)
string sqlCommandText = "insert into Users(UserName,Email,Address) Values (@UserName,@Email,@Address)";
using (IDbConnection connection = new SqlConnection(conn))
{
User user = new User()
{
UserName = "tim",
Email = "78415155@qq.com",
Address = "北京"
};
int result = connection.Execute(sqlCommandText,user);
if (result > 0)
{
Console.WriteLine("插入成功!");
}
else
{
Console.WriteLine("插入失敗!");
}
}查詢數(shù)據(jù)庫:

3、InsertBulk操作
既然是Bulk操作,那肯定就是批量插入了,我們要做的就是將上面使用到的“匿名對象”變成“匿名對象集合”就可以了,代碼如下:
using (IDbConnection connection = new SqlConnection(conn))
{
var userList = Enumerable.Range(1012, 100000).Select(i => new User()
{
Email = i + "qq.com",
Address = "北京",
UserName = "CK" + i,
});
var result = connection.Execute("insert into Users values(@UserName,@Email,@Address)", userList);
}查詢數(shù)據(jù)庫:

二、查詢數(shù)據(jù)
using (IDbConnection connection = new SqlConnection(conn))
{
// 查詢
var query = connection.Query<User>("SELECT * FROM Users");
query.AsList().ForEach(p =>
{
Console.WriteLine("Id:"+p.UserId+" UserName:"+p.UserName+" Email:"+p.Email+" Address:"+p.Address);
});
}程序運(yùn)行結(jié)果:

三、更新數(shù)據(jù)
1、使用匿名類更新
using (IDbConnection connection = new SqlConnection(conn))
{
var result = connection.Execute("update Users set UserName='Tim',Address='上海' where UserId=@UserId", new { UserId = 2 });
}查詢數(shù)據(jù)庫:

2、使用實(shí)體類更新
using (IDbConnection connection = new SqlConnection(conn))
{
User user = new User();
user.UserName = "張無忌";
user.UserId = 1;
var result = connection.Execute("update Users set UserName=@UserName where UserId=@UserId", user);
}查詢數(shù)據(jù)庫:

3、使用鍵值對更新
using (IDbConnection connection = new SqlConnection(conn))
{
List<KeyValuePair<string, object>> keys = new List<KeyValuePair<string, object>>();
keys.Add(new KeyValuePair<string, object>("@UserName", "風(fēng)清揚(yáng)"));
keys.Add(new KeyValuePair<string, object>("@UserId", 2));
var result = connection.Execute("update Users set UserName=@UserName where UserId=@UserId", keys);
}查詢數(shù)據(jù)庫:

四、刪除數(shù)據(jù)
1、使用匿名類刪除數(shù)據(jù)
using (IDbConnection connection = new SqlConnection(conn))
{
var result = connection.Execute("delete from Users where UserId=@UserId", new { UserId = 3 });
}2、使用實(shí)體類刪除數(shù)據(jù)
using (IDbConnection connection = new SqlConnection(conn))
{
User user = new User();
user.UserId = 4;
var result = connection.Execute("delete from Users where UserId=@UserId", user);
}示例程序代碼下載地址:點(diǎn)此下載
到此這篇關(guān)于使用Dapper實(shí)現(xiàn)CURD操作的文章就介紹到這了。希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
.Net Core自動化部署之利用docker版jenkins部署dotnetcore應(yīng)用的方法
這篇文章主要給大家介紹了關(guān)于.Net Core自動化部署之利用docker版jenkins部署dotnetcore應(yīng)用的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-06-06
.NET中OpenFileDialog使用線程報錯的解決方法
這篇文章主要為大家詳細(xì)介紹了.NET中OpenFileDialog使用線程報錯的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-01-01
asp.net中日歷函數(shù)Calendar的使用方法
calendar 控件用于在瀏覽器中顯示日歷,該控件可顯示某個月的日歷,允許用戶選擇日期,也可以跳到前一個或下一個月2011-05-05
asp.net updatepanel 導(dǎo)致JS不能加載,而無法使用的解決方法
asp.net updatepanel 局部刷新,導(dǎo)致JS不能加載,而無法使用,而且 updatepanel會刷兩次,郁悶的,解決方法如下2013-08-08
ASP.NET MVC中使用Bundle打包壓縮js和css的方法
這篇文章主要為大家詳細(xì)介紹了ASP.NET MVC中使用Bundle打包壓縮js和css的方法,感興趣的小伙伴們可以參考一下2016-05-05
在asp.net下實(shí)現(xiàn)Option條目中填充前導(dǎo)空格的方法
在asp.net下實(shí)現(xiàn)Option條目中填充前導(dǎo)空格的方法...2007-03-03

