abp CrudAppService 自定义分页排序

Posted wswind

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了abp CrudAppService 自定义分页排序相关的知识,希望对你有一定的参考价值。

public class GetAllTasksInput : PagedAndSortedResultRequestDto
{
    public TaskState? State { get; set; }
}
public class TaskAppService : AsyncCrudAppService<Task, TaskDto, int, GetAllTasksInput>
{
    public TaskAppService(IRepository<Task> repository)
        : base(repository)
    {

    }

    protected override IQueryable<Task> CreateFilteredQuery(GetAllTasksInput input)
    {
        return base.CreateFilteredQuery(input)
            .WhereIf(input.State.HasValue, t => t.State == input.State.Value);
    }
}

参考:
https://aspnetboilerplate.com/Pages/Documents/Application-Services
https://docs.microsoft.com/en-us/aspnet/core/data/ef-rp/sort-filter-page?view=aspnetcore-2.2



以上是关于abp CrudAppService 自定义分页排序的主要内容,如果未能解决你的问题,请参考以下文章

Abp vNext 自定义 Ef Core 仓储引发异常

ABP.IO CLI:尝试使用 repo 中的 templates\app 文件夹从自定义模板创建应用程序

Abp VNext实战入门:DbMigrator 自定义项目所需种子数据

Abp VNext 集成sharding-core 分表分库

abp.io - 扩展用户配置文件

ABP模块配置