using System.Linq; using Volo.Abp.DependencyInjection; namespace Volo.Abp.ObjectMapping; public interface IQueryProjectionMapper : ITransientDependency { IQueryable ProjectTo(IQueryable source); }