dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/IInterceptQueryExecutionOptions.cs
2019-11-27 20:08:51 -06:00

13 lines
338 B
C#

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);
}
}