dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/IQueryInterceptorProvider.cs

11 lines
295 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
using System.Linq;
namespace PoweredSoft.DynamicQuery.Core
{
public interface IQueryInterceptorProvider
{
IEnumerable<IQueryInterceptor> GetInterceptors<TSource, TResult>(IQueryCriteria queryCriteria, IQueryable<TSource> queryable);
}
}