91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

.NET?6開發TodoList應用怎么實現查詢排序

發布時間:2022-01-04 10:27:29 來源:億速云 閱讀:105 作者:iii 欄目:開發技術

這篇文章主要講解了“.NET 6開發TodoList應用怎么實現查詢排序”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“.NET 6開發TodoList應用怎么實現查詢排序”吧!

需求

關于查詢的另一個需求是要根據前端請求的排序字段進行對結果相應的排序。

目標

實現根據排序要求返回排序后的結果

原理與思路

要實現根據前端請求的進行相應排序,結合我們之前寫好的Specification,可以比較簡單地做到。

實現

我們還是用TodoItem請求來舉例,再添加一個排序字段到查詢請求中:

GetTodoItemsWithConditionQuery.cs

using AutoMapper;
using AutoMapper.QueryableExtensions;
using MediatR;
using TodoList.Application.Common.Interfaces;
using TodoList.Application.Common.Mappings;
using TodoList.Application.Common.Models;
using TodoList.Application.TodoItems.Specs;
using TodoList.Domain.Entities;
using TodoList.Domain.Enums;

namespace TodoList.Application.TodoItems.Queries.GetTodoItems;

public class GetTodoItemsWithConditionQuery : IRequest<PaginatedList<TodoItemDto>>
{
    public Guid ListId { get; set; }
    public bool? Done { get; set; }
    public string? Title { get; set; }
    public PriorityLevel? PriorityLevel { get; set; }
    public string? SortOrder { get; set; } = "title_asc";
    public int PageNumber { get; set; } = 1;
    public int PageSize { get; set; } = 10;
}

public class GetTodoItemsWithConditionQueryHandler : IRequestHandler<GetTodoItemsWithConditionQuery, PaginatedList<TodoItemDto>>
{
    private readonly IRepository<TodoItem> _repository;
    private readonly IMapper _mapper;

    public GetTodoItemsWithConditionQueryHandler(IRepository<TodoItem> repository, IMapper mapper)
    {
        _repository = repository;
        _mapper = mapper;
    }

    public async Task<PaginatedList<TodoItemDto>> Handle(GetTodoItemsWithConditionQuery request, CancellationToken cancellationToken)
    {
        var spec = new TodoItemSpec(request);
        return await _repository
            .GetAsQueryable(spec)
            .ProjectTo<TodoItemDto>(_mapper.ConfigurationProvider)
            .PaginatedListAsync(request.PageNumber, request.PageSize);
    }
}

同時把原本寫在查詢中的條件整合到了TodoItemSpec中:

TodoItemSpec.cs

// 省略其他...
public TodoItemSpec(GetTodoItemsWithConditionQuery query) : 
    base(x => x.ListId == query.ListId 
              && (!query.Done.HasValue || x.Done == query.Done) 
              && (!query.PriorityLevel.HasValue || x.Priority == query.PriorityLevel)
              && (string.IsNullOrEmpty(query.Title) || x.Title!.Trim().ToLower().Contains(query.Title!.ToLower())))
{
    if (string.IsNullOrEmpty(query.SortOrder))
        return;
    switch (query.SortOrder)
    {
        // 僅作有限的演示
        default:
            ApplyOrderBy(x => x.Title!);
            break;
        case "title_desc":
            ApplyOrderByDescending(x =>x .Title!);
            break;
        case "priority_asc":
            ApplyOrderBy(x => x.Priority);
            break;
        case "priority_desc": 
            ApplyOrderByDescending(x => x.Priority); 
            break;
    }
}

驗證

啟動Api項目,執行查詢TodoItem的請求:

請求

.NET?6開發TodoList應用怎么實現查詢排序

響應

.NET?6開發TodoList應用怎么實現查詢排序

感謝各位的閱讀,以上就是“.NET 6開發TodoList應用怎么實現查詢排序”的內容了,經過本文的學習后,相信大家對.NET 6開發TodoList應用怎么實現查詢排序這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚顺市| 贡觉县| 宾阳县| 武鸣县| 吉林市| 古浪县| 澄迈县| 乳山市| 凉城县| 岳池县| 虹口区| 洞口县| 洪洞县| 都昌县| 东平县| 宁津县| 高陵县| 甘肃省| 昭苏县| 长阳| 长白| 拉孜县| 昌宁县| 江津市| 宜黄县| 平湖市| 威宁| 开江县| 常熟市| 青岛市| 吉木萨尔县| 长宁县| 神池县| 黑水县| 逊克县| 册亨县| 云霄县| 万山特区| 奈曼旗| 金阳县| 清水县|