Skip to content

Instantly share code, notes, and snippets.

@syedahmad9
syedahmad9 / IQueryableExtensions.cs
Last active July 27, 2022 21:54
Aspnet boilerplate IQueryableExtensions to able to get Paged and Sorted data if you don't want to inherit CrudAppServiceBase Class
using System;
using System.Linq;
using System.Linq.Dynamic.Core;
using System.Threading.Tasks;
using Abp.Application.Services.Dto;
using Abp.Linq.Extensions;
using Abp.Threading;
using System.Linq.Expressions;
using Abp.Extensions;
using AutoMapper.QueryableExtensions;