2023-06-07 04:59:02 +02:00
|
|
|
<?php
|
|
|
|
|
2023-07-06 04:21:28 +02:00
|
|
|
namespace SilverStripe\ORM\Tests\DataListTest\EagerLoading;
|
2023-06-07 04:59:02 +02:00
|
|
|
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
|
|
|
class EagerLoadObjectManyManyThroughEagerLoadObject extends DataObject implements TestOnly
|
|
|
|
{
|
|
|
|
private static $table_name = 'EagerLoadObjectManyManyThroughEagerLoadObject';
|
|
|
|
|
|
|
|
private static $db = [
|
2023-07-06 07:15:13 +02:00
|
|
|
'Title' => 'Varchar',
|
|
|
|
'SomeBool' => 'Boolean',
|
|
|
|
'SomeInt' => 'Int',
|
2023-06-07 04:59:02 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
private static $has_one = [
|
|
|
|
'EagerLoadObject' => EagerLoadObject::class,
|
|
|
|
'ManyManyThroughEagerLoadObject' => ManyManyThroughEagerLoadObject::class
|
|
|
|
];
|
|
|
|
}
|