I'd like to figure out how to query based on a composition of columns, eg the fullname of a user, without any custom SQL. Is this possible?
Imagine something like User.objects.filter(firstname_concat_lastname__startswith="Barack Ob")
I know that in this particular example, it'd be easy enough to split "Barack Ob" by whitspace and modify the query, but is it possible to do a query on a composition of columns like this?