用于验证插入上的记录引用的 Doctrine 挂钩
我想添加产品当且仅当它至少有两个变体(产品可以有许多变体)。
如果没有足够的变体,如何在学说的 preInsert 或 postInsert 挂钩中验证这一点并停止事务?我知道如何使用 $event->getModified() 或 $event->data 检查标量字段,但想知道整个关系是否可能,特别是如果记录尚未插入数据库。我的意思是多对多和一对多关系。
I want to add Product if and only if it has say at least two Variants (Product can have many Variants).
How to validatate this in doctrine's preInsert or postInsert hook and stop transaction if there are not enough Variants? I know how to check scalar field using $event->getModified() or $event->data, but wondering if it is possible with whole relations especially if record has not been inserted to database yet. I mean both Many to Many and One to Many relations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有用于验证的特殊挂钩 您可以使用它轻松实现此功能:
validate()
、validateOnInsert()
和validateOnUpdate()
there are special hooks for validation that you can use to easily implement this functionality:
validate()
,validateOnInsert()
andvalidateOnUpdate()