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

9 lines
198 B
C#

namespace PoweredSoft.DynamicQuery.Core
{
public interface IQueryExecutionOptions
{
bool GroupByInMemory { get; set; }
bool GroupByInMemoryNullCheck { get; set; }
}
}