php – 数据迁移器是否将SGBD结果转换为对象?

前端之家收集整理的这篇文章主要介绍了php – 数据迁移器是否将SGBD结果转换为对象?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 MySql,并在数组中返回结果/行.

我明白,最后,模型层“目标”是在处理SGBD查询后返回一个对象.

那么,将行(或单行)转换为对象的过程应该集成到DataMapper(它是Model层的一部分)中,还是应该在DataMapper中注入的第三个服务的责任?

谢谢

So,should the process of converting rows (or a single row) into an
object be integrated in the DataMapper.

那么这是数据映射器的责任.它应该返回一个实体,而不是一个结果集.

or should it be the responsibility of a third service that would be injected in the DataMapper?

这也是一个可能性,谷歌到“UnitOfWork”我认为这是你正在寻找.
https://www.sitepoint.com/implementing-a-unit-of-work/

你也可以看看这个教义来源
https://github.com/doctrine/doctrine2/blob/master/lib/Doctrine/ORM/EntityManager.php

原文链接:https://www.f2er.com/php/131855.html

猜你在找的PHP相关文章