Click or drag to resize

QuerySqlOptions Enumeration

Option flags passed in the [[OPTIONS]] parameter to an IMapper object QuerySQL. QuerySQL is typically a Stored Procedure expression.

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum QuerySqlOptions
Members
  Member nameValueDescription
Aggregate1 A single row with aggregate values should be returned. Mutually exclusive with Count. If neither Count or Aggregate is set then the basic data records should be returned.
Count2 A single row with a single column containing the record count should be returned. Mutually exclusive with Aggregate. If neither Count or Aggregate is set then the basic data records should be returned.
See Also