本文整理匯總了PHP中Propel\Tests\Bookstore\Book::addBookListRel方法的典型用法代碼示例。如果您正苦於以下問題:PHP Book::addBookListRel方法的具體用法?PHP Book::addBookListRel怎麽用?PHP Book::addBookListRel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Propel\Tests\Bookstore\Book
的用法示例。
在下文中一共展示了Book::addBookListRel方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testManyToMany_Dir2_Saved
/**
* Tests reverse setting of relationships, saving one of the objects first.
* @link http://propel.phpdb.org/trac/ticket/508
*/
public function testManyToMany_Dir2_Saved()
{
$list = new BookClubList();
$list->setGroupLeader('Archimedes Q. Porter');
$list->save();
$book = new Book();
$book->setTitle("Jungle Expedition Handbook");
$book->setISBN('TEST');
// No save (yet) ...
$this->assertEquals(0, count($list->getBookListRels()));
$this->assertEquals(0, count($book->getBookListRels()));
$this->assertEquals(0, count(BookListRelPeer::doSelect(new Criteria())));
// Now set the relationship from the opposite direction.
$xref = new BookListRel();
$xref->setBookClubList($list);
$book->addBookListRel($xref);
$this->assertEquals(1, count($list->getBookListRels()));
$this->assertEquals(1, count($book->getBookListRels()));
$this->assertEquals(0, count(BookListRelPeer::doSelect(new Criteria())));
$book->save();
$this->assertEquals(1, count($list->getBookListRels()));
$this->assertEquals(1, count($book->getBookListRels()));
$this->assertEquals(1, count(BookListRelPeer::doSelect(new Criteria())));
}
示例2: testManyToMany_Dir2_Saved
/**
* Tests reverse setting of relationships, saving one of the objects first.
* @link http://propel.phpdb.org/trac/ticket/508
*/
public function testManyToMany_Dir2_Saved()
{
$list = new BookClubList();
$list->setGroupLeader('Archimedes Q. Porter');
$list->save();
$book = new Book();
$book->setTitle("Jungle Expedition Handbook");
$book->setISBN('TEST');
// No save (yet) ...
$this->assertCount(0, $list->getBookListRels());
$this->assertCount(0, $book->getBookListRels());
$this->assertCount(0, BookListRelQuery::create()->find());
// Now set the relationship from the opposite direction.
$xref = new BookListRel();
$xref->setBookClubList($list);
$book->addBookListRel($xref);
$this->assertCount(1, $list->getBookListRels());
$this->assertCount(1, $book->getBookListRels());
$this->assertCount(0, BookListRelQuery::create()->find());
$book->save();
$this->assertCount(1, $list->getBookListRels());
$this->assertCount(1, $book->getBookListRels());
$this->assertCount(1, BookListRelQuery::create()->find());
}