[開源] .NET資料庫ORM類庫 Insql

来源:https://www.cnblogs.com/rainrcn/archive/2019/02/03/10350163.html
-Advertisement-
Play Games

介紹 新年之際,給大家介紹個我自己開發的ORM類庫Insql。TA是一個輕量級的.NET ORM類庫 . 對象映射基於Dapper , Sql配置靈感來自於Mybatis。簡單優雅性能是TA的追求。 "github" | "gitee" 閑聊 以下可跳過 : ) 自己為什麼會開發Insql? 1. ...


介紹

新年之際,給大家介紹個我自己開發的ORM類庫Insql。TA是一個輕量級的.NET ORM類庫 . 對象映射基於Dapper , Sql配置靈感來自於Mybatis。簡單優雅性能是TA的追求。

github | gitee

閑聊

以下可跳過 : )

  • 自己為什麼會開發Insql?
  1. 最初的自己一樣是從寫最基本的Sql代碼來訪問資料庫
    進而我們發現查詢出的數據與保存的數據通常都是實體對象,而還需要跨不同類型資料庫的需要。
  2. 這時ORM就成為了我們的工具。在使用ORM和Linq的出現讓我迫切希望找到一款好用的支持Linq的ORM框架。這個過程中使用了微軟的EntityFramework,還有各種同僚自己開發的ORM,有很多不錯的作品。自己也用了很多。當然在這裡面我的評判標準就是性能優先,無需中間緩存層。操作能以最直接的方式直達資料庫。在Linq的支持上當然也需要豐富些。
  3. 我以為這就是我的歸宿,可是Linq只能解決不同類型資料庫的共性問題,有些ORM很難做到充分利用各個資料庫的特性,例如獨特的類型和獨特的方法。當然不要告訴我自己遇到那種問題時再寫原生SQL.我儘可能希望我使用工具時簡單統一,不要有負擔存在。
  4. 直到我開發Java項目時,遇到了Mybatis。可以說真的很好用。它以XML配置SQL的方式,自己可以自由靈活的寫語句,當然資料庫的獨有方法特性都能使用。但是在dotnet core上我沒有找到類似好用的組件。於是就有了Insql。
  • 如何設計Insql?
    整體功能架構就以下兩塊
  1. 語句解析
    首先先載入xxx.insql.xml配置,載入方式支持擴展,目前實現以程式集嵌入式文件方式載入。
    解析各種配置節點元素,最終生成可直接執行的sql語句和sql參數。
  2. 對象映射
    在保存和查詢時都需要實體對象的參與,這裡對象映射就提供類這個功能。目前也有很多對象映射類庫,我們這裡直接使用Dapper。輪子就不重覆造了。

正題

安裝

Package Nuget Install
Insql Install-Package Insql
Insql.MySql Install-Package Insql.MySql
Insql.Oracle Install-Package Insql.Oracle
Insql.PostgreSql Install-Package Insql.PostgreSql
Insql.Sqlite Install-Package Insql.Sqlite

如何使用

Add Insql

public void ConfigureServices(IServiceCollection services)
{
    services.AddInsql();

    services.AddInsqlDbContext<UserDbContext>(options =>
    {
        options.UseSqlite(this.Configuration.GetConnectionString("sqlite"));
    });
}

Create DbContext

public class UserDbContext : Insql.DbContext  
{
    public UserDbContext(Insql.DbContextOptions<UserDbContext> options) 
        : base(options)
    {
    }

    public IEnumerable<UserInfo> GetUserList(string userName)
    {
        //sqlId = "GetUserList"
        //sqlParam is PlainObject or IDictionary<string,object>
        return this.Query<UserInfo>(nameof(GetUserList), new { userName, userGender = Gender.W });
    }

    public void InsertUser(UserInfo info)
    {
        var userId = this.ExecuteScalar<int>(nameof(InsertUser),info);

        info.UserId = userId;
    }

    public void UpdateUserSelective(UserInfo info)
    {
        this.Execute(nameof(UpdateUserSelective), info);
    }
}

//user model
public class UserInfo
{
    public int UserId { get; set; }

    public string UserName { get; set; }

    public Gender? UserGender { get; set; }
}

public enum Gender
{
    M,
    W
}

Create DbContext.insql.xml

創建 UserDbContext.insql.xml 文件並且修改這個文件的屬性為嵌入式文件類型 . insql typeUserDbContext 類型對應.

<insql type="Example.Domain.Contexts.UserDbContext,Example.Domain" >

  <sql id="selectUserColumns">
    select user_id as UserId,user_name as UserName,user_gender as UserGender from user_info
  </sql>

  <select id="GetUserList">
    <include refid="selectUserColumns" />
    <where>
      <if test="userName != null">
        <bind name="likeUserName" value="'%' + userName + '%'" />
        user_name like @likeUserName
      </if>
      <if test="userGender != null and userGender != 'M' ">
        and user_gender = @userGender
      </if>
    </where>
    order by  user_id
  </select>

  <insert id="InsertUser">
    insert into user_info (user_name,user_gender) values (@UserName,@UserGender);
    select last_insert_rowid() from user_info;
  </insert>
  <update id="UpdateUser">
    update user_info set user_name=@UserName,user_gender=@UserGender where user_id = @userId
  </update>

  <update id="UpdateUserSelective">
    update user_info
    <set>
      <if test="UserName != null">
        user_name=@UserName,
      </if>
      <if test="UserGender != null">
        user_gender=@UserGender
      </if>
    </set>
    where user_id = @UserId
  </update>

</insql>

Use DbContext

public class ValuesController : ControllerBase
{
    private readonly UserDbContext userDbContext;

    public ValuesController(UserDbContext userDbContext)
    {
        this.userDbContext = userDbContext;
    }

    [HttpGet]
    public ActionResult<IEnumerable<string>> Get()
    {
        //可以這樣簡單的使用事務
        this.userDbContext.DoWithTransaction(() =>
        {
            this.userDbContext.InsertUser(new Domain.UserInfo
            {
                UserName = "loveW",
                UserGender = Domain.Gender.M
            });

            this.userDbContext.UpdateUserSelective(new Domain.UserInfo
            {
                UserId = 1,
                UserName = "loveWWW",
            });
        });

        var list = this.userDbContext.GetUserList("love");
    }
}

其他用法

Create Common DbContext

public class SqliteDbContext<T> : DbContext where T : class
{
    public SqliteDbContext(DbContextOptions<SqliteDbContext<T>> options) : base(options)
    {
    }

    protected override void OnConfiguring(DbContextOptions options)
    {
        var configuration = options.ServiceProvider.GetRequiredService<IConfiguration>();

        //T type mapping to insql.xml type
        options.UseSqlResolver<T>();

        options.UseSqlite(configuration.GetConnectionString("sqlite"));
    }
}

Create Domain Service

public interface IUserService
{
    IEnumerable<UserInfo> GetUserList(string userName,Gender? userGender);
}

public class UserService : IUserService
{
    private readonly DbContext dbContext;

    //T is UserService
    public UserService(SqliteDbContext<UserService> dbContext)
    {
        this.dbContext = dbContext;
    }

    public IEnumerable<UserInfo> GetUserList(string userName, Gender? userGender)
    {
        return this.dbContext.Query<UserInfo>(nameof(GetUserList), new { userName, userGender });
    }
}

Create Service.insql.xml

創建 UserService.insql.xml 文件並且修改這個文件的屬性為嵌入式文件類型 . insql typeUserService 類型對應.

<insql type="Example.Domain.Services.UserService,Example.Domain" >

  <sql id="selectUserColumns">
    select user_id as UserId,user_name as UserName,user_gender as UserGender from user_info
  </sql>

  <select id="GetUserList">
    <include refid="selectUserColumns" />
    <where>
      <if test="userName != null">
        <bind name="likeUserName" value="'%' + userName + '%'" />
        user_name like @likeUserName
      </if>
      <if test="userGender != null ">
        and user_gender = @userGender
      </if>
    </where>
    order by  user_id
  </select>

</insql>

Add Insql

public void ConfigureServices(IServiceCollection services)
{
    services.AddInsql();

    services.AddScoped(typeof(DbContextOptions<>));
    services.AddScoped(typeof(SqliteDbContext<>));

    services.AddScoped<IUserService, UserService>();
}

Use Domain Service

public class ValuesController : ControllerBase
{
    private readonly IUserService userService;

    public ValuesController(IUserService userService)
    {
        this.userService = userService;
    }

    [HttpGet]
    public ActionResult<IEnumerable<string>> Get()
    {
        var list = this.userService.GetUserList("11", Domain.Gender.M);
    }
}

@謝謝大家支持!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 索引: 目錄索引 一.組件特性簡介: 1.MSIL 底層代碼採用 System.Reflection.Emit.Lightweight 類庫使用 IL 的方式處理 Model 組裝,性能剛剛的~ 2.API 大量使用 System.Linq.Expressions 方式,強類型,對程式員編碼非常友好 ...
  • 通常 在完成 條件之後再增加分數 所以 一開始先增加 得到分數++; 分數ui.text = 得到分數.ToString(); 下麵是寫貪吃蛇的 ...
  • 一、ViewData 1、ViewData派生自ViewDataDictionary,所以它具有字典的屬性,例如:ContainsKey 、Add 、Remove 和 Clear ; 2、字典鍵值是字元串類型,所以可以帶空格,例如ViewData["a b"]; 3、在視圖中,只有string類型的 ...
  • Newtonsoft.Json Newtonsoft.Json 是.Net平臺操作Json的工具,他的介紹就不多說了,筆者最近在弄介面,需要操作Json。 以某個雲計算平臺的Token為例,邊操作邊講解。 Json 轉為 Model 將 Model 轉為 Json 將 LINQ 轉為 JSON Li ...
  • .net core已經出來很長一段時間了,沒有很好的學習過,現在工作不那麼忙了,參考官方文檔,在這裡記錄自己的學習過程! ASP.NET Core 是一個跨平臺的高性能開源框架,用於生成基於雲且連接 Internet 的新式應用程式。 使用ASP.NET Core,可以:創建 Web 應用程式和服務 ...
  • asp.net core webapi/website+Azure DevOps+GitHub+Docker ...
  • EFCore中的約定簡單來說就是規則,CodeFirst基於模型的約定來映射表結構。除此之外還有Fluent API、Data Annotations(數據註釋) 可以幫助我們進一步配置模型。 按照這三者的優先順序高低排序分別是:Fluent API、Data Annotations(數據註釋)、約定 ...
  • 配置資料庫表首碼 "ABP踩坑記錄 目錄" 本篇其實和ABP關係並不大,主要是EF Core的一些應用 . 。 起因 支持資料庫表首碼應該是很多應用中比較常見的功能,而在ABP中並沒直接提供這一功能,所以在我們的應用中,我們轉而藉助EF Core的配置來實現資料庫表首碼的配置。 解決方案 這裡我結合 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...