Diff #4 - trunk/docs/classes/models/emailqueue/where.md Repo: apex/webapp Revision: 4 Filename: trunk/docs/classes/models/emailqueue/where.md Size: 797 bytes Updated By: apex Date Updated: January 20, 2025 at 08:20 DiffFull Code Diff Index: where.md --- where.md (nonexistent) +++ where.md (revision 4) @@ -0,0 +1,39 @@ + +# BaseModel::where + +### Usage + +> ModelIterator BaseModel::where(string $where_sql, [ ... $args ]) + +### Description + +> Select multiple records from the database table that is assigned to the model class. + +### Parameters + +Parameter | Required | Type | Description +------------- |------------- |------------- |------------- +where_sql | Yes | string | +args | No | ... | + +### Return +> ModelIterator +### See Also + +* all() +* count() +* delete() +* deleteMany() +* getChildren() +* insert() +* insertFromForm() +* insertOrUpdate() +* purge() +* save() +* toArray() +* toFormattedArray() +* update() +* whereFirst() +* whereId() + + Full Code BaseModel::where Usage ModelIterator BaseModel::where(string $where_sql, [ ... $args ]) Description Select multiple records from the database table that is assigned to the model class. Parameters Parameter Required Type Description where_sql Yes string args No ... Return ModelIterator See Also all() count() delete() deleteMany() getChildren() insert() insertFromForm() insertOrUpdate() purge() save() toArray() toFormattedArray() update() whereFirst() whereId()