我想從數據庫中獲取舊實體以更改保存歷史記錄。如何獲得使用Doctrine 2重置實體
現在我有一個代碼:
// Old version 1!
$app = $appManager->findByAppleId(547409501);
$app->setVersion('1.1');
$oldApp = $appManager->findByAppleId(547409501);
print $app->getVersion() . '<br />' . $oldApp->getVersion();
但應用程序和舊的應用程序有1.1版。在數據庫應用程序有版本1
P.S.
- > findByAppleId - 讓存儲庫並使用功能 「找到」(蘋果ID是主鍵)