Thanks a lot for your humble words. Since this topic is little big, I have split it into multiple videos. :) Next Video : ruclips.net/video/Ftn9zYygBDw/видео.html Don't forget to subscribe the channel for future videos.. :)
You speak so clearly, and the pacing is really good. Not too slow, not too fast. It was really easy to follow along and BIG props for covering both extension and query syntax. Amazing tutorial, thank you!
I love it! Simple but meaningful! I hope you will have a Real World Project Online Tutorial covering all C#, Linq, Entity Framework, ASP.Net Core Razor/Blazor! More Power and More Subscribers! Thanks A lot!
Someone please tell how to convert this below query method into method syntax.? Var get=(from u in db1 Where u. Roleid==3 && u.city=="London" Order by u. Userid desennding Select u). To list();
I guest descending. And it seems to sql sysyntax not linq, claude say. var get = db1.Users .Where(u => u.RoleId == 3 && u.City == "London") .OrderByDescending(u => u.UserId) .Select(u => u) .ToList();
Nice Tutorial! I look forward in finishing your LINQ video tutorial! Many Thanks! Good Luck!
Thanks a lot for your humble words.
Since this topic is little big, I have split it into multiple videos. :)
Next Video : ruclips.net/video/Ftn9zYygBDw/видео.html
Don't forget to subscribe the channel for future videos.. :)
You speak so clearly, and the pacing is really good. Not too slow, not too fast. It was really easy to follow along and BIG props for covering both extension and query syntax. Amazing tutorial, thank you!
Thanks a lot for such encouraging words! Glad you liked the video. 😊
I love it! Simple but meaningful! I hope you will have a Real World Project Online Tutorial covering all C#, Linq, Entity Framework, ASP.Net Core Razor/Blazor! More Power and More Subscribers! Thanks A lot!
Thanks.. Glad you liked it 😊
Your work is highly appreciated! God Bless and more Knowledge! Thanks a lot!
Thanks a lot.. :)
You helped me a lot with this serie of LINQ. Really helpful, thank you very much!
Glad it was helpful! 😊
This guy , I loved the way you explain it.
another thing you did not have to tell us to suscribe. After completing video , I have to do it. :)
agree !!
Thanks a lot for such encouraging words!
We are coming up with many more videos shortly. 😊
bro you are good in that please make more videos about dotnet if it ispossible for you
Do you make a playlist also for Blazor in the future?
Will try to make. 😊
Link to project?
Bhai video quality badhao
t.y
Glad you found them useful! 😊
Someone please tell how to convert this below query method into method syntax.?
Var get=(from u in db1
Where u. Roleid==3 && u.city=="London"
Order by u. Userid desennding
Select u). To list();
var get = db.where(u => u.RoleId == 3 && u.city == "london").OrderByDesc(q => q.userId).ToList();
I guest descending. And it seems to sql sysyntax not linq, claude say. var get = db1.Users
.Where(u => u.RoleId == 3 && u.City == "London")
.OrderByDescending(u => u.UserId)
.Select(u => u)
.ToList();