Hello,
Someone know how to do that in django?:
url = "basE_url"
query.update(url= url + models.F("slug_nombre")),
and the result should be the concatenation of de column url like "basE_url(slug_nombre)"
I'm a little bit confused, because I understand why doesn't work that, but don't know why the orm doesn't detect the types of the params and make an aritmethic funcion or concatenate function.
thanks!