The F class well explained and understood now 😁, thank you Master 🙌🏾.
@bugbytes3923 Жыл бұрын
Thanks as always!
@el.wan_x7 ай бұрын
I can feel a great understanding of Django from your end. I always look for your videos first for any concept. Perfectly understood, thanks 👍👍
@Geeky_gamer7459 ай бұрын
Really, It is one of the best Channel over the KZbin for Django ORM. Thank You so much for this knowledge. ☺☺
@bugbytes39239 ай бұрын
Thanks a lot - really appreciate the comment!
@munirhakani16438 ай бұрын
What is the difference between following. Why should I use annotate print(Sale.objects.annotate(profit=F('income')-F('expense')).values('profit')) print(Sale.objects.values(profit=F('income')-F('expense'))) Most importantly, Sir you are doing a Gr8 work.
@Rinpower25 күн бұрын
you are the best, dude, thanks!
@bugbytes392325 күн бұрын
@@Rinpower thanks a lot!!
@shahabgohar33507 ай бұрын
Man You are a life saver. Thank you very much for these series. Subscribed liked. Keep up the good work, enabled the notification.
@gerhardspitzlsperger1567 Жыл бұрын
Great und interesti g video
@bugbytes3923 Жыл бұрын
Thank you!
@rns108 ай бұрын
The videos are quite clear in terms of the functionality you are trying to present, but I think sometimes we dont have that much of experience with SQL, so you should not comment the connection.queries print statement, because we want to see how each query runs. We could also do it while practicing, but it would be great if you could keep it enabled for most of the time, in case we want to see what is happening behind the scenes.
@bugbytes39238 ай бұрын
Thanks for the suggestion! I'll keep that in mind for future ORM videos.
@angelokezimana Жыл бұрын
Learned something new. Great content
@bugbytes3923 Жыл бұрын
Thank you!
@repotranstech Жыл бұрын
Cool video as always.Thanks.
@bugbytes3923 Жыл бұрын
Thanks a lot 🙏
@a98cb9858 ай бұрын
It is brilliant explain for stupid me. Thx so much
@ravigarg7269 Жыл бұрын
That's great sir.
@bugbytes3923 Жыл бұрын
Thank you!
@Jack-l8d7s Жыл бұрын
Great video. Would love to see you cover Django and APScheduler at some point!
@bugbytes3923 Жыл бұрын
Thanks! Not used APScheduler before, I’ll need to look into that.
@juanbetancourt5106 Жыл бұрын
Thank you for sharing your knowledge good Sir.
@bugbytes3923 Жыл бұрын
Thank you!
@aashayamballi Жыл бұрын
Thank you!
@bugbytes3923 Жыл бұрын
You're welcome, thanks for watching!
@frameff9073 Жыл бұрын
thank
@bugbytes3923 Жыл бұрын
Thanks for watching!
@manofhat6763 ай бұрын
Thanks is not enough, thanks
@bugbytes39233 ай бұрын
Thanks so much!
@Septumsempra8818 Жыл бұрын
When running prefetch and select related, how do we get back products.promo.price rather than products__promo__price? The first method allows me to reuse templates rather than having to go into templates and add the dunder to every occurrence