Your explanations really very clear and through the point All your mongodb playlist is osm
@askanalysis9872 Жыл бұрын
Struggling with this for 3 days. Finally found this. Thank you so so much
@ziyaurrahmankhan81482 жыл бұрын
This video is very helpful for understanding the concept of schema and populate methods
@akashddeepchitransh4537 Жыл бұрын
Very underrated channel...
@soumyaswaroopsootar Жыл бұрын
Very Clear Explaination Of Populate on MongoDB
@Solo_playz2 жыл бұрын
My God damn bro, I really couldn't understand this concept for the past couple of days, but now I have a clear understanding of it. Thank you very much. Really appreciable 👏
@coderdost2 жыл бұрын
Thanks. Will try to make more useful videos in future
@poojagadara11892 жыл бұрын
very well explained and love your sweet voice
@puravmehta95882 жыл бұрын
Nice explanation.....Keep it up 🔥🔥❤🔥!!
@deadlock_333 жыл бұрын
Well explained 🤜🤛
@nandininila Жыл бұрын
So helpful to me. Thanks
@52nevil363 жыл бұрын
great video thanks for helping
@dipendangol53872 жыл бұрын
Thank you brooo 😄
@sheyushai937 Жыл бұрын
very helpful video bcz of I am find lots of video on mongodb but I can't find on mongoose and also this type advanced query so thank you so much
@coderdost Жыл бұрын
Great
@faaizalam2352 жыл бұрын
Sir is it necessary to give id, if I have already object and want to save in schema instead of I'd I can give entire object,to it, then it will find it self I'd,
@coderdost2 жыл бұрын
Yes, you can do that also. and it is a perfect solution in MongoDB. You need to understand, when it is good to have ID and when the entire object : 1. Complete Object is suitable -> If the property is unique for that parent document and changes very less. Example - if data is like your home address object. no need to save its ID - save the complete object. as that object will always be your personal address. and if it changes only needs to be changed in your document. 2. ID is good -> If the property is shared between many objects and keeps changing. For example - if that data object is your "Favorite Sports player's record" It will be better to store only ID. As that player can be the favorite of 100 other users. Also, the record will keep changing - you can't update the player record for all users in DB every time. So have the player in a separate document and then update it once, it will be changed for all users (as they are linked by ID).
@faaizalam2352 жыл бұрын
@@coderdost thank you so much for giving me clear details 😍😍❤️
@ADayWithDev Жыл бұрын
if any student is trying to fill city but before he have to go through state country and then city then how we will create this type of nested data inside it ?
@AbhishekSavaliya-bf2fw Жыл бұрын
I not Want to Use ObjectId I want to use my CustomeId to aggregate ?
@sunilmaurya6594 Жыл бұрын
you can explain there multiple levels population as well, i think than this topic will be complete
@ajayjangid59682 жыл бұрын
Hello sir nice video. But could you tell me how to apply projections on populated field ?
@coderdost2 жыл бұрын
I think it's answered nicely here : stackoverflow.com/questions/28414334/is-there-a-way-to-populate-with-a-projection-in-mongoose
@surajghodke10332 жыл бұрын
Any idea how to set limit or pagination on populated array?