我想做这个查询:
resultado = Cotizacion.objects.filter(cliente_identificacion_id = cliente).select_related()
在Django中,我尝试使用过滤器,但只返回单个表中的数据,在这种情况下只有一个模型。
extension Result {
func toArray() -> [T] {
let newArray: [T] = []
// At here you should append the value from self into newArray
...
return newArray
}
}