9 lines
198 B
C#
9 lines
198 B
C#
|
namespace PoweredSoft.DynamicQuery.Core
|
|||
|
{
|
|||
|
public interface IQueryExecutionOptions
|
|||
|
{
|
|||
|
bool GroupByInMemory { get; set; }
|
|||
|
bool GroupByInMemoryNullCheck { get; set; }
|
|||
|
}
|
|||
|
}
|