Good explanation sir. In short IEnumerable featch the data and filtere it rather than IQuerable featch filtered data. That's why it is faster as compare to IEnumerable
You make the video short and to the point.. good for revision...Add one more video if possible regarding best code practices... And best design patterns with situations..
Nice video, one point IQueryable executes a "select query" on server-side with all filters that appended to it until database execution. That give to use make more flexible code.
@@interviewhappyyesterday i was testing IEnumerable and IQueryable and got the same result using inline query with linq Where(),that is each of them generated sql where.But using 2 lines,like : IEnumerable data = context.Users; var filtered = data.Where(...).ToList(); In this case with IEnumerable we don't have sql where.Can you clarify it?
This appears as a question from the technical round.
Thank you so much for this because I got the job offer.
Good explanation sir. In short IEnumerable featch the data and filtere it rather than IQuerable featch filtered data. That's why it is faster as compare to IEnumerable
Great 👍. Thanks 🙏
Seriously very grateful information in very easiest way .., thanks sir 😊
You make the video short and to the point.. good for revision...Add one more video if possible regarding best code practices... And best design patterns with situations..
Crisp and clear explanation
Thanks and all the best Himanshu
Very well explained
Thanks for liking
Nice video, one point IQueryable executes a "select query" on server-side with all filters that appended to it until database execution.
That give to use make more flexible code.
Thanks a bunch for this great explanation... really helped me understand
Today I learn one new thing , thanks
I'm glad you found something new in this video!
Very well explained, subscribed to your channel because of this great explanation :)
Thanks Nishant and all the best for your career.
@@interviewhappy thank you, same to you!
amazing explaination, thank bro
Very useful explanation..
Thanks Shweta and all the best for your career.
Brilliant. Thanks a lot.
Wah Sir g
can you explain about the pipielines in program.cs? What's the flow
Hi Logesh, I think I already explained this in .NET core part
Sir.., Can you explain solid principles concept bit brief
Sure Will do it soon Sravika
Hi Sir, I have one doubt.. in which scenario we have to use innumerable rather than iqurable in linq query ?
When you have in-memory collections
@@interviewhappyyesterday i was testing IEnumerable and IQueryable and got the same result using inline query with linq Where(),that is each of them generated sql where.But using 2 lines,like : IEnumerable data = context.Users; var filtered = data.Where(...).ToList(); In this case with IEnumerable we don't have sql where.Can you clarify it?
@@serg1778 If you are using SQL server, then you can check that in SQL Server Profiler. Just check which query is being executed.
Jesus loves you brother