ABP進階教程2 - 組合查詢

来源:https://www.cnblogs.com/IT-Evan/archive/2019/10/10/ABP18.html
-Advertisement-
Play Games

點這裡進入ABP進階教程目錄 更新數據傳輸對象 打開應用層(即JD.CRS.Application)的Course\Dto\GetAllCoursesInput.cs //Course數據傳輸對象(查詢條件) 增加一行代碼 1 using Abp.Application.Services.Dto; ...


點這裡進入ABP進階教程目錄 

更新數據傳輸對象 

打開應用層(即JD.CRS.Application)的Course\Dto\GetAllCoursesInput.cs //Course數據傳輸對象(查詢條件)

增加一行代碼

public string Keyword { get; set; } //用於全文搜索
 1 using Abp.Application.Services.Dto;
 2 using JD.CRS.Entitys;
 3 
 4 namespace JD.CRS.Course.Dto
 5 {
 6     public class GetAllCoursesInput: PagedResultRequestDto
 7     {
 8         public StatusCode? Status { get; set; }
 9         public string Keyword { get; set; }
10     }
11 }
View Code

更新應用服務

打開應用層(即JD.CRS.Application)的Course\CourseAppService.cs //Course應用服務

更新GetAll方法 //按Keyword查詢Course

1 .WhereIf(
2 !input.Keyword.IsNullOrEmpty(), t =>
3 t.Code.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按編號查詢
4 || t.DepartmentCode.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按院系編號查詢
5 || t.Name.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按名稱查詢
6 || t.Credits.ToString().Contains((input.Keyword ?? string.Empty).ToLower()) //按學分查詢
7 || t.Remarks.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按備註查詢
8 );

完整代碼如下:

 1 public override async Task<PagedResultDto<CourseDto>> GetAll(GetAllCoursesInput input)
 2 {
 3     var query = base.CreateFilteredQuery(input)
 4         .WhereIf(input.Status.HasValue, t => t.Status == input.Status.Value)
 5         .WhereIf(
 6         !input.Keyword.IsNullOrEmpty(), t =>
 7         t.Code.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按編號查詢
 8         || t.DepartmentCode.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按院系編號查詢
 9         || t.Name.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按名稱查詢
10         || t.Credits.ToString().Contains((input.Keyword ?? string.Empty).ToLower()) //按學分查詢
11         || t.Remarks.ToLower().Contains((input.Keyword ?? string.Empty).ToLower()) //按備註查詢
12         );
13     var coursecount = query.Count();
14     var courselist = query.ToList();
15     return new PagedResultDto<CourseDto>()
16     {
17         TotalCount = coursecount,
18         Items = ObjectMapper.Map<List<CourseDto>>(courselist)
19     };
20 }
View Code

更新模型

打開展示層(即JD.CRS.Web.Mvc)的Models/Course/CourseListViewModel.cs //Course查詢視圖模型

增加一行代碼

public string Keyword { get; set; }

更新控制器

打開展示層(即JD.CRS.Web.Mvc)的Controllers/CourseController.cs //Course控制器

更新Index方法 //按Keyword查詢Course

增加一行代碼

Keyword = input.Keyword

完整代碼如下:

 1 public async Task<ActionResult> Index(GetAllCoursesInput input)
 2 {
 3     IReadOnlyList<CourseDto> output = (await _courseAppService.GetAll(new GetAllCoursesInput { Status = input.Status, Keyword = input.Keyword })).Items;
 4     var model = new CourseListViewModel(output)
 5     {
 6         Status = input.Status,
 7         Keyword = input.Keyword
 8     };
 9     return View(model);
10 }
View Code

更新視圖

打開展示層(即JD.CRS.Web.Mvc)的Views/Course/Index.cshtml //Course查詢視圖

插入查詢條件 //按Keyword查詢Course

 1 <div class="header">
 2     <table>
 3         <thead>
 4             <tr>
 5                 <th class="col-sm-1">@L("Status")</th>
 6                 <th class="col-sm-1">
 7                     @Html.DropDownListFor(
 8                     model => model.Status,
 9                     Model.GetStatusList(LocalizationManager),
10                     new
11                     {
12                         @class = "form-control",
13                         id = "Status"
14                     })
15                 </th>
16                 <th class="col-sm-1">@L("Keyword")</th>
17                 <th class="col-sm-4">
18                     <input id="Keyword" name="Keyword" type="text" class="form-control" placeholder="Please enter the keyword..." value[email protected] />
19                 </th>
20                 <th class="col-sm-4"></th>
21                 <th class="col-sm-1">
22                     <button id="Search" class="form-control">@L("Search")</button>
23                 </th>
24             </tr>
25         </thead>
26     </table>
27 </div>
View Code

更新腳本

打開展示層(即JD.CRS.Web.Mvc)的\wwwroot\view-resources\Views\Course\Index.js //用以存放Course查詢相關腳本

插入查詢條件 //按Stauts & Keyword 組合查詢Course

1 //define variable
2 var _$status = $('#Status');
3 var _$keyword = $('#Keyword');
4 var _$search = $('#Search');
5 //Search
6 _$search.click(function () {
7     location.href = '/Course?status=' + _$status.val() + '&keyword=' + _$keyword.val();
8 });

預覽效果

 

 

 

 

 

 


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

-Advertisement-
Play Games
更多相關文章
  • 題目 Maxtir 最近買了一個背包。 Maxtir 有一個容量為 m 的背包。Sao 有 n 種物品,第 i 種物品的體 積為 ai ,價值為 b i 。Sao 的每種物品都有無限多件,Maxtir 可以任取。 在不超過背包容量的前提下,Maxtir 要求所能獲得的最大價值。<! more 輸入輸 ...
  • 錯誤提示 使用vscode安裝nuget插件之後出現錯誤: 原因 主要是nuget插件里的拉組件的js文件沒有進行小寫的控制 解決 打開路徑下的文件fetchPackageVersions.js 修改代碼 ...node_fetch_1.default( , utils_1.getFetchOpti ...
  • 本文是對c#中Dictionary內部實現原理進行簡單的剖析。如有表述錯誤,歡迎指正。 主要對照源碼來解析,目前對照源碼的版本是.Net Framwork 4.8,源碼地址。 1. 關鍵的欄位和Entry結構 2. 添加鍵值(Add) 2.1 數組entries和buckets初始化 2.2 添加鍵 ...
  • String類的幾個方法的應用示例: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ConsoleAp ...
  • 有很多人在找客戶過程中遇到了一些問題,有些網站,有些系統裡面經常會把手機號碼的中間四位屏蔽掉 中國的手機號是11位,知道手機的前三位,後四位如何補全中間四位,其實是有軟體可以做到的 前提知道這個號碼是哪個地方的,如果不知道那數據量就太龐大了,先看看軟體圖 因為涉及到號碼的隱私我就塗掉了,使用很簡單, ...
  • //實體類 [Table("invoiceinfo", Schema = "obs")] public class invoice { [Key] public string invoice_num { get; set; } public string merchant_id { get; set... ...
  • 場景 表示時間的數據格式為浮點數,如下: 需要將其格式化為{H:min:s.ms}格式的字元串,效果如下: 註: 博客主頁:https://blog.csdn.net/badao_liumang_qizhi 關註公眾號 霸道的程式猿 獲取編程相關電子書、教程推送與免費下載。 實現 效果 ...
  • 千呼萬喚始出來, asp.net core 3.0 更新簡記 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...