public static MYSQLInit Limit(this MYSQLInit @this, string pageIndex, string pageSize)
 {
     @this.Builder.Limit(pageIndex, pageSize, @this.ParaList);
     return(@this);
 }
 public static MYSQLInit OrderBy(this MYSQLInit @this, string name, string type)
 {
     @this.Builder.OrderBy(name, type, @this.ParaList);
     return(@this);
 }
 public static MYSQLInit Where(this MYSQLInit @this, string sql, object value)
 {
     @this.Builder.Where(sql, value, @this.ParaList);
     return(@this);
 }
 public static MYSQLInit And(this MYSQLInit @this, string sql, object value, MySqlDbType dbType)
 {
     @this.Builder.And(sql, value, dbType, @this.ParaList);
     return(@this);
 }
 public static MYSQLInit Append(this MYSQLInit @this, string sql)
 {
     @this.Builder.AppendFormat(" {0} ", sql);
     return(@this);
 }