1👍
✅
you can do that like this:
data = Data.objects.annotate(age=F('extra__age')).all()
then you can access the age like this
data[0].age
Source:stackexchange.com