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

9 lines
198 B
C#
Raw Normal View History

2019-11-27 21:08:51 -05:00
namespace PoweredSoft.DynamicQuery.Core
{
public interface IQueryExecutionOptions
{
bool GroupByInMemory { get; set; }
bool GroupByInMemoryNullCheck { get; set; }
}
}