Thanks for your response.
In Django models.. For example
class TempUser(models.Model):
first_name = models.CharField(max_length=100)
class Meta:
managed = False
db_table = "temp_user"
temp_user is database view.
Now assume select * from temp_user
Gives 5 records
Same model if i register in admin panel.
It will show less records than 5.
Even if i do TempUser.Objects.Count()
It will show less records than 5.
Very rare case it show exactly what view is having otherwise most of the time it fails to show exact records.
I observed this since many days in 3 to 4 projects of my django