Propel ORM:如果对象尚不存在,如何仅保存对象

发布于 2024-10-08 19:21:14 字数 465 浏览 5 评论 0原文

我正在使用 Propel ORM。我的一个表称为“朋友”,它的条目代表多对多关系。表“friend”具有以下条目:

  • profile_idfriend_profile_id
  • 这两个属性显然创建了PrimaryKey

现在我想用新信息更新此表。所以我想像这样保存新的朋友条目:

$friendCon = new RplFriend();
$friendCon->setProfileId($profile->getId());
$friendCon->setFriendProfileId($friendProfile->getId());
$friendCon->save();

但此时,我不知道这样的条目是否已经存在。所以我从 Propel 中收到很多“重复条目”错误。仅保存新条目(如果尚不存在)的最有效方法是什么?

I'm using the Propel ORM. One of my tables is called "friend" and its entries represent many-to-many-relationships. The table "friend" has to entries:

  • profile_id
  • friend_profile_id

These two properties obviously create the PrimaryKey.

Now I would like to update this table, with new Information. So I would like to save new Friend-Entries like so:

$friendCon = new RplFriend();
$friendCon->setProfileId($profile->getId());
$friendCon->setFriendProfileId($friendProfile->getId());
$friendCon->save();

But at this point, I dont know if such an entry already exists. So I get lots of "Duplicate Entry" errors from Propel. What is the most performant way, to only save a new entry, if it doesnt already exist?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素手挽清风 2024-10-15 19:21:14

也许你应该尝试这样的事情:

$friendCon_duplicate = RplFriendQuery::create()->findPK($profile->getId(),$friendProfile->getId());

if($friendCon_duplicate..

Maybe you should try something like:

$friendCon_duplicate = RplFriendQuery::create()->findPK($profile->getId(),$friendProfile->getId());

if($friendCon_duplicate..
那小子欠揍 2024-10-15 19:21:14

在数据库中设置这两个字段的唯一索引

set unique index of those 2 fields in your database

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文