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

13 lines
338 B
C#
Raw Permalink Normal View History

2019-11-27 21:08:51 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PoweredSoft.DynamicQuery.Core
{
public interface IQueryExecutionOptionsInterceptor : IQueryInterceptor
{
IQueryExecutionOptions InterceptQueryExecutionOptions(IQueryable queryable, IQueryExecutionOptions current);
}
}