Added new method for add where sql statement and after make query operation

This commit is contained in:
Antonio de la Rosa 2016-09-06 05:59:24 +02:00
parent c4a7f65833
commit 0bfcff6b42

View file

@ -1600,6 +1600,15 @@ class Webmodel {
}
}
public function where($where_sql)
{
$this->set_conditions($where_sql);
return $this;
}
/**