SqlFu.CommandConfiguration.WithCommandOptions C# (CSharp) Method

WithCommandOptions() public method

public WithCommandOptions ( Action options ) : IConfigureCommand
options Action
return IConfigureCommand
        public IConfigureCommand WithCommandOptions(Action<DbCommand> options)
        {
            options.MustNotBeNull();
            ApplyOptions = options;
            return this;
        }
    }