Is it possible to have a field in a Django model which does not get stored in the database. For example:
class Book(models.Model): title = models.CharFie
Creating a property on the model will do this, but you won't be able to query on it.