SqlFu.CommandConfiguration.Sql C# (CSharp) 메소드

Sql() 공개 메소드

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