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

9 lines
250 B
C#

namespace PoweredSoft.DynamicQuery.Core
{
public class QueryExecutionOptions : IQueryExecutionOptions
{
public bool GroupByInMemory { get; set; } = false;
public bool GroupByInMemoryNullCheck { get; set; } = false;
}
}