mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
DOCS: fixed 3.2.0 changelog DataList code sample
This commit is contained in:
parent
751264fd6a
commit
ef4a75ad43
@ -597,8 +597,8 @@ After:
|
|||||||
$things = MyObject::get()->where(array('"MyObject"."Name" = ?' => $name));
|
$things = MyObject::get()->where(array('"MyObject"."Name" = ?' => $name));
|
||||||
$list = DataList::create('Banner')->where(array(
|
$list = DataList::create('Banner')->where(array(
|
||||||
'"ParentID" IS NOT NULL',
|
'"ParentID" IS NOT NULL',
|
||||||
'"Title" = ?', $title
|
'"Title" = ?' => $title,
|
||||||
);
|
));
|
||||||
|
|
||||||
|
|
||||||
#### 3. Interaction with `DataList::sql()`, `DataQuery::sql()`, `SQLQuery::sql()`, or `SQLQuery::getJoins()` methods
|
#### 3. Interaction with `DataList::sql()`, `DataQuery::sql()`, `SQLQuery::sql()`, or `SQLQuery::getJoins()` methods
|
||||||
|
Loading…
Reference in New Issue
Block a user