uestla/yetorm
Composer 安装命令:
composer require uestla/yetorm
包简介
Lightweight ORM for Nette\Database
README 文档
README
Lightweight ORM built on top of Nette\Database
Quickstart
Consider following database schema:
Entities
Firstly we'll create entity classes according to the schema above. There are two ways of defining entity properties - via @property[-read] annotation, or simply via getter and setter.
Tag
/** * @property-read int $id * @property string $name */ class Tag extends YetORM\Entity {}
Author
/** * @property-read int $id * @property string $name * @property string $web * @property \DateTime $born */ class Author extends YetORM\Entity {}
Book
There are some relations at the Book entity - two N:1 Author and M:N Tag relations. Every YetORM\Entity has an instance of YetORM\Record in it, which is a simple wrapper around Nette\Database\Table\ActiveRow. That means that we can access related records or column values through it.
/** * @property-read int $id * @property string $title * @property string $web * @property string $slogan */ class Book extends YetORM\Entity { function getAuthor() { return new Author($this->record->ref('author', 'author_id')); } function getMaintainer() { return new Author($this->record->ref('author', 'maintainer_id')); } function getTags() { $selection = $this->record->related('book_tag'); return new YetORM\EntityCollection($selection, 'Tag', 'tag'); } }
With $record->ref($table, $column) we're accessing related table row in table $table through column $column - pretty simple.
The M:N relation is realized with YetORM\EntityCollection instance - which is a lazy collection of entities. In this case it iterates throw all related rows from book_tag table (first argument), creates instances of Tag (second argument) and on every related book_tag table row it accesses related tag table row (third argument), which then passes to the constructor of Tag entity :-)
This sounds crazy, but it's actually simple to get used to.
With this knowledge we can now simply add some helpful methods to Author entity:
// class Author function getBooksWritten() { $selection = $this->record->related('book', 'author_id'); return new YetORM\EntityCollection($selection, 'Book'); } function getBooksMaintained() { $selection = $this->record->related('book', 'maintainer_id'); return new YetORM\EntityCollection($selection, 'Book'); }
Repositories
Every repository has to have table and entity class name defined - either via @table and @entity annotaion, or via protected $table and $entity class property.
/** * @table book * @entity Book */ class BookRepository extends YetORM\Repository {}
Fetching collections
YetORM\Repository comes with basic findAll() and findBy($criteria) methods, both returning already mentioned EntityCollection.
We can simply iterate through all books
$books = new BookRepository($connection); // $connection instanceof Nette\Database\Context foreach ($books->findAll() as $book) { // $book instanceof Book echo $book->title; echo $book->getAuthor()->name; foreach ($book->getTags() as $tag) { // $tag instanceof Tag echo $tag->name; } }
Fetching single entity
$book = $books->getByID(123); // instanceof Book or NULL if not found
Magic findBy<Property>() and getBy<Property>() methods
Instead of manually writing findByTitle($title) method as this
function findByTitle($title) { return $this->findBy(array( 'title' => $title, )); }
we can just call
$books->findByTitle($title); // without having the method implemented
That will return a collection of books with that exact title.
To get a single entity use the magic getBy<Property>($value) method:
$book = $books->getByIsbn('<isbn_code>'); // instanceof Book or NULL if not found
Just to have the IDE code completion along with this magic methods, we can use the @method annotation:
/** * @table book * @entity Book * @method YetORM\EntityCollection|Book[] findByTitle(string $title) * @method Book|NULL getByIsbn(string $isbn) */ class BookRepository extends YetORM\Repository {} /** * @property-read int $id * @property string $title * @property string $isbn */ class Book extends Entity {}
IMPORTANT: When using magic
findBy<Property>()andgetBy<Property>()methods, make sure you have the property defined via@propertyannotation!
NOTE: magic
findBy<Property>()andgetBy<Property>()do not work on relational properties of type Entity.
Persisting
To persist changes we simply call $repository->persist($entity).
$book->web = 'http://example.com'; $books->persist($book);
And that's it!
Additional notes
- No identity map
- Query efficiency - the collections (resp.
YetORM\Record) use the power ofNette\Databaseefficiency - Collection operations - collections can be sorted via
$coll->orderBy($column, $dir)and limitted via$coll->limit($limit, $offset)
More
For more examples please see the tests.
uestla/yetorm 适用场景与选型建议
uestla/yetorm 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 36.49k 次下载、GitHub Stars 达 49, 最近一次更新时间为 2013 年 04 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「database」 「orm」 「nette」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 uestla/yetorm 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 uestla/yetorm 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 uestla/yetorm 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Kinikit - PHP Application development framework MVC component
Store your language lines in the database, yaml or other sources
PHP Database ORM for Symfony1. Do NOT use for new projects: please move to a newest Symfony release and Doctrine2
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
A PSR-7 compatible library for making CRUD API endpoints
统计信息
- 总下载量: 36.49k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 51
- 点击次数: 11
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-04-01