9 lines
250 B
C#
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;
|
|||
|
}
|
|||
|
}
|