using System; namespace Dapper { /// /// Additional state flags that control command behaviour /// [Flags] public enum CommandFlags { /// /// No additional flags /// None = 0, /// /// Should data be buffered before returning? /// Buffered = 1, /// /// Can async queries be pipelined? /// Pipelined = 2, /// /// Should the plan cache be bypassed? /// NoCache = 4, } }