溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在.NET中使用Dapper操作mysql數(shù)據(jù)庫

發(fā)布時間:2021-05-24 16:51:17 來源:億速云 閱讀:140 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎么在.NET中使用Dapper操作mysql數(shù)據(jù)庫,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

引入MySql.Data 的Nuget包。有人可能出現(xiàn)了黑人臉,怎么引入。也罷,看在你骨骼驚奇的份上,我就告訴你,兩種方式:

第一種方式

Install-Package MySql.Data -Version 8.0.15

復(fù)制上面命令行 在程序包管理控制臺中執(zhí)行,什么?你不知道什么是程序包管理控制臺?OMG,也罷,看在你骨骼驚奇的份上,我就告訴你

手點(diǎn)路徑:工具 → NuGet包管理器 → 程序包管理控制臺 

怎么在.NET中使用Dapper操作mysql數(shù)據(jù)庫

第二種方式

手點(diǎn)路徑:右鍵你需要引入包的項(xiàng)目的依賴項(xiàng) → 管理NuGet程序包  → 瀏覽里面輸入 MySql.Data

怎么在.NET中使用Dapper操作mysql數(shù)據(jù)庫 

怎么在.NET中使用Dapper操作mysql數(shù)據(jù)庫

直接安裝即可,因?yàn)槲乙呀?jīng)安裝過了,所以這里是卸載或者更新

同樣的方式你需要引入:

Microsoft.AspNetCore.All
MySql.Data.EntityFrameworkCore、
Dapper
Microsoft.Extensions.Configuration.Abstractions
Microsoft.Extensions.Configuration.FileExtensions
Microsoft.Extensions.Configuration.Json

教學(xué)篇

玩兒過.NET Core 的都知道配置文件我們一般都放在appsettings.json 文件中,但是有個問題,如果我們使用數(shù)據(jù)庫連接字符串,直接存放明文的user name和password,真的安全嗎?這里我們不對安全性做討論,我們在連接字符串中 用占位符控制我們的多數(shù)據(jù)庫情況,然后用userName以及passWord充當(dāng)我們密碼(后面會被替換掉),所以看起來是這個樣子:

 "ConnectionStrings": {
  "DefaultConnection": "server=服務(wù)器;port=端口號;database=regatta{0};SslMode=None;uid=userName;pwd=passWord;Allow User Variables=true"
 },

接下來,我們新建一個BaseRepository 用于讀取Configuration,以及設(shè)置MySqlConnection:

public class BaseRepository : IDisposable
  {
    public static IConfigurationRoot Configuration { get; set; }

    private MySqlConnection conn;

    public MySqlConnection GetMySqlConnection(int regattaId = 0, bool open = true,
      bool convertZeroDatetime = false, bool allowZeroDatetime = false)
    {
      IConfigurationBuilder builder = new ConfigurationBuilder()
        .SetBasePath(Directory.GetCurrentDirectory())
        .AddJsonFile("appsettings.json");

      Configuration = builder.Build();
      

      string cs = Configuration.GetConnectionString("DefaultConnection");
      cs = regattaId == 0 ? string.Format(cs, string.Empty) : string.Format(cs, "_" + regattaId.ToString());

      cs = cs.Replace("userName", "真正的賬號").Replace("passWord", "真正的密碼");
      var csb = new MySqlConnectionStringBuilder(cs)
      {
        AllowZeroDateTime = allowZeroDatetime,
        ConvertZeroDateTime = convertZeroDatetime
      };
      conn = new MySqlConnection(csb.ConnectionString);
      return conn;
    }
public void Dispose()
{
if (conn != null && conn.State != System.Data.ConnectionState.Closed)
{
conn.Close();
}
}

}

好了,創(chuàng)建完畢,我們該如何使用呢,比方說 現(xiàn)在有個CrewManagerRepository類用于操作數(shù)據(jù)庫,我們只需要讓此類 繼承BaseRepository , 示例如下

  /// <summary>
    /// 根據(jù)賽事Id、用戶Id獲取用戶基本信息
    /// </summary>
    /// <param name="regattaId">賽事Id</param>
    /// <param name="userId">用戶Id</param>
    /// <returns></returns>
    public async Task<實(shí)體對象> FindUserByAccount(int regattaId, int userId)
    {
      try
      {
        var cmdText =
          @"select b.id_number as IdentifierId,b.isvalid as Isvalid,a.name as Name,a.userid as InternalId,a.sex as Sexual,a.sex as SexTypeId,a.age as Age,
                c.isprofessional as IsProfessional,c.role_type as RoleTypeId,a.weight as Weight,a.height as Height, a.phone as PhoneNumber,a.thumb_image as ThubmnailImage,
                a.image as Image,c.athlete_id as AthleteId from 表1 a left join 表2 b on a.userid=b.id 
                left join 表3 c on b.id=c.centralid where a.userid=@userId;";
          //此處可以根據(jù)傳入的regattaId訪問不同的數(shù)據(jù)庫
        using (var conn = GetMySqlConnection(regattaId))
        {
          if (conn.State == ConnectionState.Closed)
          {
            await conn.OpenAsync();
          }

          var memberModel = conn
            .Query<實(shí)體對象>(cmdText, new { userId = userId }, commandType: CommandType.Text)
            .FirstOrDefault();
          return memberModel ?? new MemberDetail();
        }
      }
      catch (Exception ex)
      {
        _logger.LogError(ex, "FindUserByAccount by Id Failed!");
        throw;
      }


    }

那有同學(xué)可能有黑人臉出現(xiàn)了,如果需要事務(wù)呢(露出嘴角的微笑)?

public async Task<bool> DeleteXXX(int regattaId, int id, int userId)
    {
      var result = false;
      using (var conn = GetMySqlConnection(regattaId))
      {
        if (conn.State == ConnectionState.Closed)
        {
          await conn.OpenAsync();
        }

        using (var transaction = conn.BeginTransaction())
        {
          try
          {
            const string sqlDelClub =
              @"delete from 表名 where 字段1=@clubId;
               delete from 表名2 where 字段2=@clubId;
               delete from 表名3 where 字段3=@userId and clubinfo_id=@clubId;";

            await conn.QueryAsync(sqlDelClub, new
            {
              clubId = id,
              userId = userId,
            }, commandType: CommandType.Text);

            transaction.Commit();

            result = true;
          }
          catch (Exception e)
          {
            Console.WriteLine(e);
            transaction.Rollback();
            result = false;
            throw;
          }
        }

        return result;
      }
    }

這樣,用Transaction將執(zhí)行代碼塊包起來,如果出現(xiàn)異常,在catch中 進(jìn)行Rollback(回滾事務(wù)),就可以保證了數(shù)據(jù)的一致性。如果是高并發(fā)場景,可能還會需要用到鎖,這里暫時不做延伸討論。

如果是返回集合,也很容易處理:

public async Task<List<實(shí)體>> GetClubsByUserId(int regattaId, int userId)
    {
      using (var conn = GetMySqlConnection(regattaId))
      {
        if (conn.State == ConnectionState.Closed)
        {
          await conn.OpenAsync();
        }

        const string sql =
          @"select b.club_id as id,c.name,c.image as ImageData,c.year,c.address,c.creator,c.description,b.contact ,b.phone,b.isvalid from 表1 a left join 表2 b on 
           a.clubinfo_id=b.club_id left join 表3 c on 
           b.clubbase_id=c.club_id where a.authorize_userid=@user_Id";
        List<實(shí)體> clubDetailList =
          (await conn.QueryAsync<實(shí)體>(sql, new { user_Id = userId }, commandType: CommandType.Text))
          .ToList();

        return clubDetailList;
      }
    }

上述就是小編為大家分享的怎么在.NET中使用Dapper操作mysql數(shù)據(jù)庫了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI