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

15 lines
421 B
C#
Raw Normal View History

2018-10-17 22:14:21 -04:00
using System.Linq;
namespace PoweredSoft.DynamicQuery.Core
{
public interface IBeforeQueryExecuteInterceptor : IQueryInterceptor
{
IQueryable InterceptBeforeQuery(IQueryCriteria criteria, IQueryable queryable);
}
public interface IBeforeQueryExecuteInterceptor<T> : IQueryInterceptor
{
IQueryable<T> InterceptBeforeQuery(IQueryCriteria criteria, IQueryable<T> queryable);
}
}