dongshan3806 2017-11-10 14:01 采纳率: 0%
浏览 92
已采纳

DB :: transaction()可以执行Eloquent查询作为事务吗?

Me: THIS IS A HYBRID QUESTION | Visitor: (wtf?) what this means?

I'm asking 2 questions in one (as it tightly coupled)

Using: Laravel 5.5 & Mysql

1. How do I delete related models in eloquent?

I'm trying to delete User which has the following relations

belongsTo Address, belongsTo Package, hasMany Orders, hasMany Comments

Orders cascade when User or Product gets deleted COmments cascade when User or Post gets deleted.

Now how do I can delete User & automatically have associated orders & comments deleted?

when I try to delete with $user->delete() laravel throws exception:

SQLSTATE[23000]: Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint fails (`cybertron`.`comments`, CONSTRAINT `comments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)) (SQL: delete from `users` where `id` = 4)

So I decided to use a transaction to delete, User, associated orders & comments, To make sure everything gets deleted.

But I didn't find any transaction in eloquent but in query builder (DB).

2. if I use transaction from DB & use eloquent to delete user ($user->delete) will this consider as a transaction?

like:

DB::transaction(function() {

      $user->comments->delete();
      $user->orders->delete();
      $user->delete();
});

If not then how can I have a transaction with Eloquent ?

Any help will be greatly appreciated

  • 写回答

2条回答 默认 最新

  • douwei7203 2017-11-11 09:54
    关注
    1. You have Eloquent events For deleting but you can also override default delete method like so:

      public function delete()
      {
          \DB::transaction(function() {
              $this->comments()->delete();
              $this->orders()->delete();
              parent::delete(); 
           });
      }
      
    2. Yes, Eloquent doesn't have transaction itself. You use transactions as you showed and wrap Eloquent or query builder in it. Be aware that in your case you should use comments() and orders() instead of comments and orders

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了