欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

輕量級(jí)ORM框架Dapper應(yīng)用之實(shí)現(xiàn)CURD操作

 更新時(shí)間:2022年03月05日 16:30:04   作者:.NET開發(fā)菜鳥  
這篇文章介紹了使用Dapper實(shí)現(xiàn)CURD操作的方法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

上一篇文章中,講解了如何安裝Dapper,這篇文章中將會(huì)講解如何使用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)文章

最新評(píng)論