MyDAL - like && not like 條件 使用

来源:https://www.cnblogs.com/Meng-NET/archive/2019/02/18/10387628.html
-Advertisement-
Play Games

索引: 目錄索引 一.API 列表 C# 代碼中 String.Contains("conditionStr") 生成 SQL 對應的 like '%conditionStr%' 如:.Queryer<Agent>() ... ... .Where(it => it.PathId.Contains( ...


索引:

目錄索引

一.API 列表

  C# 代碼中 String.Contains("conditionStr") 生成 SQL 對應的 like '%conditionStr%'

     如:.Queryer<Agent>()

      ... ...

      .Where(it => it.PathId.Contains("~00-d-3-1-"))

      ... ... 用於 單表 like 條件

      .Queryer(out Agent agent1, out AgentInventoryRecord record1)

      ... ...

      .Where(() => agent1.Name.Contains("陳"))

      ... ... 用於 多表連接 like 條件

  C# 代碼中 String.StartsWith("conditionStr") 生成 SQL 對應的 like 'conditionStr%'

     如:.Queryer<Agent>()

      ... ...

      .Where(it => it.PathId.StartsWith("~00-d-3-1-"))

      ... ... 用於 單表 like 條件

      .Queryer(out Agent agent13, out AgentInventoryRecord record13)

      ... ...

      .Where(() => agent13.Name.StartsWith("張"))

      ... ... 用於 多表連接 like 條件

  C# 代碼中 String.EndsWith("conditionStr") 生成 SQL 對應的 like '%conditionStr'

     如:.Queryer<Agent>()

      ... ...

      .Where(it => it.PathId.EndsWith("~00-d-3-1-"))

      ... ... 用於 單表 like 條件

      .Queryer(out Agent agent13, out AgentInventoryRecord record13)

      ... ...

      .Where(() => agent13.Name.EndsWith("華"))

      ... ... 用於 多表連接 like 條件

  MySQL 通配符 %(百分號)  /  _(下劃線) 

     在 string 變數中若檢測到 通配符 存在,則以自定義的通配符表達式 在 DB 中進行 like 查詢

  C# 代碼中 通配符轉義 /%(百分號轉義)  /  /_(下劃線轉義)

        在 string 變數中若檢測到 通配符轉義 存在 ,則會在 DB 中以轉義後 字面值 的形式進行 like 查詢

二.API 單表-便捷 方法 舉例

  1. like 條件

1 var res1 = await Conn.QueryListAsync<Agent>(it => it.Name.Contains(""));

    生成 SQL 如下

1 select *
2 from `agent`
3 where  `Name` like  CONCAT('%',@Name__1,'%');

   2. not like 條件

1 var res1 = await Conn.QueryListAsync<Agent>(it => !it.Name.Contains(""));

    生成 SQL 如下

1 select *
2 from `agent`
3 where  `Name` not like  CONCAT('%',@Name__1,'%');

三.API 單表-完整 方法 舉例

  1. like 條件

1             var res1 = await Conn
2                 .Queryer<Agent>()
3                 .Where(it => it.CreatedOn >= Convert.ToDateTime("2018-08-23 13:36:58").AddDays(-30))
4                     .And(it => it.PathId.Contains("~00-d-3-1-"))
5                 .PagingListAsync(1, 10);

    生成 SQL 如下

 1 -- 總數
 2 select  count(*) 
 3 from `agent`
 4 where  `CreatedOn`>=@CreatedOn__1
 5     and  `PathId` like  CONCAT('%',@PathId__2,'%');
 6 
 7 -- 分頁數據
 8 select *
 9 from `agent`
10 where  `CreatedOn`>=@CreatedOn__1
11     and  `PathId` like  CONCAT('%',@PathId__2,'%')
12 order by `Id` desc
13 limit 0,10;

  2. not like 條件

1             var res1 = await Conn
2                 .Queryer<Agent>()
3                 .Where(it => !it.PathId.Contains("~00-d-3-1-"))
4                 .PagingListAsync(1, 10);

    生成 SQL 如下

 1 -- 總數
 2 select  count(*) 
 3 from `agent`
 4 where  `PathId` not like  CONCAT('%',@PathId__1,'%');
 5 
 6 -- 分頁數據
 7 select *
 8 from `agent`
 9 where  `PathId` not like  CONCAT('%',@PathId__1,'%')
10 order by `Id` desc
11 limit 0,10;

四.API 多表連接-完整 方法 舉例

  1. like 條件

1             var res1 = await Conn
2                 .Queryer(out Agent agent1, out AgentInventoryRecord record1)
3                 .From(() => agent1)
4                     .InnerJoin(() => record1)
5                         .On(() => agent1.Id == record1.AgentId)
6                 .Where(() => agent1.Name.Contains(""))
7                 .QueryListAsync<AgentInventoryRecord>();

    生成 SQL 如下

1 select record1.`*`
2 from `agent` as agent1 
3     inner join `agentinventoryrecord` as record1
4         on agent1.`Id`=record1.`AgentId`
5 where  agent1.`Name` like  CONCAT('%',@Name__4,'%');

  2. not like 條件

1             var res1 = await Conn
2                 .Queryer(out Agent agent1, out AgentInventoryRecord record1)
3                 .From(() => agent1)
4                     .InnerJoin(() => record1)
5                         .On(() => agent1.Id == record1.AgentId)
6                 .Where(() => !agent1.Name.Contains(""))
7                 .QueryListAsync<AgentInventoryRecord>();

    生成 SQL 如下

 

1 select record1.`*`
2 from `agent` as agent1 
3     inner join `agentinventoryrecord` as record1
4         on agent1.`Id`=record1.`AgentId`
5 where  agent1.`Name` not like  CONCAT('%',@Name__4,'%');

五.String.StartsWith() 舉例

  1. like 條件

1             var res13 = await Conn
2                 .Queryer(out Agent agent13, out AgentInventoryRecord record13)
3                 .From(() => agent13)
4                     .InnerJoin(() => record13)
5                         .On(() => agent13.Id == record13.AgentId)
6                 .Where(() => agent13.Name.StartsWith(""))
7                 .QueryListAsync<Agent>();

    生成 SQL 如下,其中 @Name__4 的值會自動生成 '張%'

1 select agent13.`*`
2 from `agent` as agent13 
3     inner join `agentinventoryrecord` as record13
4         on agent13.`Id`=record13.`AgentId`
5 where  agent13.`Name` like  @Name__4;

  2. not like 條件

1             var res22 = await Conn
2                 .Queryer(out Agent agent22, out AgentInventoryRecord record22)
3                 .From(() => agent22)
4                     .InnerJoin(() => record22)
5                         .On(() => agent22.Id == record22.AgentId)
6                 .Where(() => !agent22.Name.StartsWith(""))
7                 .QueryListAsync<Agent>();

    生成 SQL 如下,其中 @Name__4 的值會自動生成 '張%'

1 select agent22.`*`
2 from `agent` as agent22 
3     inner join `agentinventoryrecord` as record22
4         on agent22.`Id`=record22.`AgentId`
5 where  agent22.`Name` not like  @Name__4;

六.String.EndsWith() 舉例

  1. like 條件

1             var res13 = await Conn
2                 .Queryer(out Agent agent13, out AgentInventoryRecord record13)
3                 .From(() => agent13)
4                     .InnerJoin(() => record13)
5                         .On(() => agent13.Id == record13.AgentId)
6                 .Where(() => agent13.Name.EndsWith(""))
7                 .QueryListAsync<Agent>();

    生成 SQL 如下,其中 @Name__4 的值會自動生成 '%華'

1 select agent13.`*`
2 from `agent` as agent13 
3     inner join `agentinventoryrecord` as record13
4         on agent13.`Id`=record13.`AgentId`
5 where  agent13.`Name` like  @Name__4;

  2. not like 條件

1             var res22 = await Conn
2                 .Queryer(out Agent agent22, out AgentInventoryRecord record22)
3                 .From(() => agent22)
4                     .InnerJoin(() => record22)
5                         .On(() => agent22.Id == record22.AgentId)
6                 .Where(() => !agent22.Name.EndsWith(""))
7                 .QueryListAsync<Agent>();

    生成 SQL 如下,其中 @Name__4 的值會自動生成 '%華'

1 select agent22.`*`
2 from `agent` as agent22 
3     inner join `agentinventoryrecord` as record22
4         on agent22.`Id`=record22.`AgentId`
5 where  agent22.`Name` not like  @Name__4;

七.MySQL 通配符 %(百分號) 、 _(下劃線) 舉例

   1. %

1 var res5 = await Conn.QueryListAsync<Agent>(it => it.Name.Contains("陳%"));

    生成 SQL 如下,其中 like 的時候 會保留 原狀 按自定義的 格式串 查詢,@Name__1 的值為 '陳%'

1 select *
2 from `agent`
3 where  `Name` like  @Name__1;

  2. _

1 var res6 = await Conn.QueryListAsync<Agent>(it => it.Name.Contains("王_"));

    生成 SQL 如下,其中 like 的時候 會保留 原狀 按自己定義的 格式串 查詢,@Name__1 的值為 '王_'

1 select *
2 from `agent`
3 where  `Name` like  @Name__1;

八.MySQL 通配符轉義 /%(百分號轉義)、/_(下劃線轉義) 舉例

  1. /%

1             var res7 = await Conn
2                 .Queryer<Agent>()
3                 .Where(it => it.Name.Contains("劉/%_"))
4                     .And(it => it.Id == resx4.Id)
5                     .And(it => it.Name.Contains("%華"))
6                     .And(it => it.Name.Contains("%/%%"))
7                 .QueryListAsync();

    生成 SQL 如下,其中 @Name__1 的值為 '劉/%_' ,% 會按其 字面義 在DB中匹配查詢

1 select *
2 from `agent`
3 where  `Name` like  @Name__1 escape '/'
4     and  `Id`=@Id__2
5     and  `Name` like  @Name__3
6     and  `Name` like  @Name__4 escape '/';

  2. /_

1             var res8 = await Conn.QueryListAsync<Agent>(it => it.Name.Contains("何/__"));

    生成 SQL 如下,其中 @Name__1 的值為 '何/__' ,_ 會按其 字面義 在DB中匹配查詢

1 select *
2 from `agent`
3 where  `Name` like  @Name__1 escape '/';

 

 

 

 

                                         蒙

                                    2019-02-18 14:45 周一

 


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

-Advertisement-
Play Games
更多相關文章
  •   C 支持通過多線程並行地執行代碼,一個線程有它獨立的執行路徑,能夠與其它的線程同時地運行。一個C 程式開始於一個單線程,這個單線程是被CLR和操作系統(也稱為“主線程”)自動創建的,並具有多線程創建額外的線程。   除非被指定,否則所有的例子都假定以下命名 ...
  • 昨天看到技術群中發了一個查詢天氣的api, "http://www.sojson.com/open/api/weather/json.shtml?city=南昌" 點進去看,發現伺服器傳回來一個天氣信息的json,剛好也在學C 解析json,就乾脆拿這個作為一個實例了。 首先,介紹一下Json: J ...
  • 在 asp.net 中,我們可以藉助 Application 來保存一些伺服器端全局變數,比如說伺服器端同時線上的人數計數,比如一些網站的配置信息。 在 ASP.NET 應用中,之前開發的活動室預約系統把網站的 keyword 以及 Title 等信息,在網站啟動的時候會從資料庫載入配置並保存到 A... ...
  • 一.介紹 前一篇,介紹了ASP.NET Core部署到K8S上,下麵介紹我們在發佈新一版本中怎麼通過Gitlab CI自動給鏡像打版本並部署到K8S上. 二.我們通過GitLab CI/CD 變數 不廢話,先上代碼: 上面的.gitlab-ci.yml 可以看到平常開發人員提交代碼先 build , ...
  • 上一篇我們聊到了容器,現在大家應該也知道了,沒有鏡像就沒有容器,所以鏡像對docker來說是非常重要的,關於鏡像的特性和原理作為入門系列就不闡 述了,我還是通過aspnetcore的小sample去熟悉鏡像的操控。 一:鏡像在哪裡 這個問題問到點子上了,就好像說肉好吃,那你告訴我哪裡才能買的到? 1 ...
  • 新建控制台應用(.Net Core)程式 添加json文件,命名為 appsettings.json ,設置文件屬性 。添加內容如下 nuget添加相關引用 依次添加以下引用 實現思路 在看到《.NET 通用主機》的文章之後,認為可以嘗試藉助GenericHost更優雅的在Console項目中使用a ...
  • 目錄,是指書籍、文檔正文前所載的目次,將主要內容以一定次第順序編排,起指導閱讀、檢索內容的作用。在Word中生成目錄前,需要設置文檔相應文字或者段落的大綱級別,根據設定的大綱級別可創建文檔的互動式大綱,即在Word文檔左側導航視窗中可顯示為如同目錄的標題大綱,通過點擊相應級別的內容,可跟蹤閱讀位置或 ...
  • 一.概述 EF實體關係定義了兩個實體互相關聯起來(主體實體和依賴實體的關係,對應資料庫中主表和子表關係)。 在關係型資料庫中,這種表示是通過外鍵約束來體現。本篇主要講一對多的關係。先瞭解下描述關係的術語。 (1) 依賴實體: 這是包含外鍵屬性的實體(子表)。有時稱為 child 。 (2) 主體實體 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...