欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.NET 6开发TodoList应用之实现查询排序

程序员文章站 2022-06-22 12:01:02
目录需求目标原理与思路实现验证总结需求关于查询的另一个需求是要根据前端请求的排序字段进行对结果相应的排序。目标实现根据排序要求返回排序后的结果原理与思路要实现根据前端请求的进行相应排序,结合我们之前写...

需求

关于查询的另一个需求是要根据前端请求的排序字段进行对结果相应的排序。

目标

实现根据排序要求返回排序后的结果

原理与思路

要实现根据前端请求的进行相应排序,结合我们之前写好的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实现查询排序 内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!