微型 ORM 的第一篇 DapperLambda發佈

引言:由於接觸過多個ORM,但使用的時候都遇到了各自的一些不夠理想的地方,從最先開始開始公司本身分裝的,到後面用EF,以及Dapper和DapperExtensions  到如今用的FluentData,就說說我本身的使用體驗,在這幾個相比之下,Dapper應該是最輕量級,並且性能也是最好的,可是相對比較簡單了點。EF的最新版也沒去使用,因此如今不是很瞭解,EF在這幾個相比一下,功能是最強大的,可是啓動加載慢,以及複雜的功能,後續人優化麻煩。FluentData 怎麼說呢,用的都挺好用,並且語法是最容易讓人理解,可是仍是不支持Lambda。基於以上這些,因此萌生了我本身動手作一個ORM,性能能跟Dapper比肩,語法要簡單,容易理解,因此不少地方借鑑了FluentData ,可是內部的邏輯是徹底不同的。數據庫

  總的來說的話, DapperLambda 就是Dapper和DapperExtensions的二次分裝,使用語法和FluentData基本相似,並加上了Lambda.原則:封裝和豐富這些功能不是爲了避免寫SQL,而是作到簡單的SQL,不但願在開發中重複寫。。。app

 

下面我將介紹在開發過程當中的運用.性能

一:下載該項目而且引用DapperLambda.dll,在VS的命令窗口中執行  Install-Package DapperLambda單元測試

 或是 在引用->管理NuGet程序包中搜索 DapperLambda測試

 

二.dll引用入到咱們的數據業務層.優化

1.)建立而且初始化一個DbContext.

   它是咱們與數據庫操做中的上下文,全部的有關數據操做都調用它下面的方法;目前只針對MSSQL進行了單元測試,後續會繼續完善在其餘數據庫中使用,因此非MSSQL,使用請謹慎spa

1     public static DbContext GetContext()
2         {
3             string connectionStr = "server=(local);User ID=sa;Password=password01!;Database=LocalDB;Persist Security Info=True;Pooling=true;Max Pool Size=700";
4             return new DbContext().ConnectionString(connectionStr, DatabaseType.MSSQLServer);
5         }

2.)接下來就正式開始介紹DapperLambda的語法,由於部分語法都一致,因此在第一篇就不介紹了,後續都有詳細介紹,就挑幾個不同的瞭解一下

  1. 支持Lamba設置條件和排序 ,最終會獲得一個SQL,(關於若是監控執行過程,後續會介紹) 執行返回獲得IEnumerable<T>
1   [TestMethod]
2         public void TestOrderByMethod()
3         {
4             using (var context = DBHelper.GetContext())
5             {
6                 var ls = context.Select<Application>().Where(p => p.CategoryID == 1).OrderBy(p => p.ApplicationID).QueryMany();
7                 Assert.IsTrue(ls.Count() > 0);
8             }
9         }

  直接上圖吧,最直接code

  固然在這條件和排序都是能夠進行屢次組合以下:server

1   [TestMethod]
2         public void TestConditionMethod()
3         {
4             using (var context = DBHelper.GetContext())
5             {
6                 var ls = context.Select<Application>().Where(p => p.ApplicationID == 1000 || p.CategoryID == 1).And(c => c.Owner == "CNLIFAN").OrderBy(p => p.ApplicationID).QueryMany();
7                 Assert.IsTrue(ls.Count() > 0);
8             }
9         }

2.Lambda指定條件、動態指定更新的字段,以防更新額外字段blog

1  public void UpdateMethod()
2         {
3             using (var context = DBHelper.GetContext())
4             {
5                 var item = context.Update<MobileForTest>().Set(new { MobileHolder = "TEST-10", MobilePhone = "18923456789" }).Where(p => p.ID == 1).Execute();
6                 Assert.IsTrue(item > 0);
7             }
8         }

3.查詢語句嵌套,最終合併成一個大的SQL執行

1   public void Delete3Method()
2         {
3             using (var context = DBHelper.GetContext())
4             {
5                 var item = context.Delete<MobileForTest>().WhereIsIn(p => p.ID, context.Select<Application>(p => p.ApplicationID == 10001).Select(p => p.CategoryID)).Execute();
6                 Assert.IsTrue(item > 0);
7             }
8         }

 

1    [TestMethod]
2         public void SQLMethod13()
3         {
4             using (var context = DBHelper.GetContext())
5             {
6                 var item = context.Select<MobileForTest>().WhereNotIn(p => p.ID, context.Select<Application>(p => p.ApplicationID == 10001).Select(p => p.CategoryID)).QuerySingle();
7                 Assert.IsTrue(item.ID == 1);
8             }
9         }

 

1   [TestMethod]
2         public void SQLMethod14()
3         {
4             using (var context = DBHelper.GetContext())
5             {
6                 var curID = context.Select<MobileForTest>(p => p.ID == 1).Select(item => new { ID = item.ID, Mobile = item.MobilePhone }).QueryDynamicSingle();
7                 var pkID = curID;
8             }
9         }

 

  靈活指定返回想要的字段

4.方便的使用事物

 1  [TestMethod]
 2         public void UseTransactionMethod()
 3         {
 4             var pkid = 1;
 5             var model = new MobileForTest { MobileHolder = "TEST-linfengFang", MobilePhone = "18911112222", Status = 0 };
 6             using (var context = DBHelper.GetContext().UseTransaction(true))
 7             {
 8                 context.Insert<MobileForTest>(model).Execute();
 9                 var item = context.Sql("UPDATE MobileForTest SET MobileHolder = 'SQLMethod-linfeng' WHERE ID=@ID", new { ID = pkid }).Execute();
10                 context.Commit();
11             }
12         }

 

5.在項目中更加使用的分頁功能

 1    [TestMethod]
 2         public void SQLPage()
 3         {
 4             var record = 0;
 5             using (var context = DBHelper.GetContext())
 6             {
 7                 var pageIndex = 0;
 8                 var pageSize = 3;
 9                 context.Select<MobileForTest>(p => p.MobilePhone == "18911112222" && p.ID != 1).QueryPage(pageIndex, pageSize, out record);
10                 Assert.IsTrue(record > 0);
11             }
12         }
13         [TestMethod]
14         public void SQLPage2()
15         {
16             var record = 0;
17             using (var context = DBHelper.GetContext())
18             {
19                 var pageIndex = 0;
20                 var pageSize = 3;
21                 var ls = context.Sql("select * from MobileForTest").QueryPage<MobileForTest>(pageIndex, pageSize, out record);
22                 Assert.IsTrue(record > 0);
23             }
24         }

 

     相對其餘的ORM,作了以上的封裝,還有大部分基本的功能與其餘的語法,也比較相似,因此開篇沒提到,目前都已經支持了。歡迎你們任意使用,若是有遇到問題,均可以給我留言,

代碼在後續會版本穩定和代碼規整後,會考慮進行開源。

相關文章
相關標籤/搜索