You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
634 B
30 lines
634 B
using System;
|
|
|
|
namespace Dapper
|
|
{
|
|
|
|
/// <summary>
|
|
/// Additional state flags that control command behaviour
|
|
/// </summary>
|
|
[Flags]
|
|
public enum CommandFlags
|
|
{
|
|
/// <summary>
|
|
/// No additional flags
|
|
/// </summary>
|
|
None = 0,
|
|
/// <summary>
|
|
/// Should data be buffered before returning?
|
|
/// </summary>
|
|
Buffered = 1,
|
|
/// <summary>
|
|
/// Can async queries be pipelined?
|
|
/// </summary>
|
|
Pipelined = 2,
|
|
/// <summary>
|
|
/// Should the plan cache be bypassed?
|
|
/// </summary>
|
|
NoCache = 4,
|
|
}
|
|
|
|
}
|
|
|