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

9 lines
250 B
C#
Raw Normal View History

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