SqlFu.CommandConfiguration.Sql C# (CSharp) Method

Sql() public method

public Sql ( string sqlText ) : IConfigureCommand
sqlText string
return IConfigureCommand
        public IConfigureCommand Sql(string sqlText, params object[] args)
        {
            SqlText = sqlText;
            Args = args;
            return this;
        }