Commit 9b01b1c6 authored by guanly's avatar guanly Committed by GitHub

ISSUE2630 使用sqlite,orm中通过filter后的delete删除不成功

https://github.com/astaxie/beego/issues/2630
parent 83814a76
......@@ -833,7 +833,11 @@ func (d *dbBase) DeleteBatch(q dbQuerier, qs *querySet, mi *modelInfo, cond *Con
if err := rs.Scan(&ref); err != nil {
return 0, err
}
args = append(args, reflect.ValueOf(ref).Interface())
pkValue, err := d.convertValueFromDB(mi.fields.pk, reflect.ValueOf(ref).Interface(), tz)
if err != nil {
panic(fmt.Errorf("get pk value failed: `%s` ", ref))
}
args = append(args, pkValue)
cnt++
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment