Venkat sir , how do u come to know our requirement ...the level you use in your teaching is amazing because it gets easy to understand each module of the concept..the presentation and voice quality is awesome there is nothing stopping you to get award from Microsoft ...this is our core desire ...can we expect tute on sharepoint in future .
@saurabhchauhan23210 жыл бұрын
Bharat Ratna :)
@jkmalify5 жыл бұрын
@@saurabhchauhan232 padma sri
@enricorm7510 жыл бұрын
All videos of all your playlist are great! Thank you.
@kamdemkakengne7 жыл бұрын
Hi Venkat! You make me better programmer with your tutorials
@Eandia5 жыл бұрын
You're very knowledgeable. Thanks for the video, I needed this!
@yashobantadash66702 жыл бұрын
great videos as always!
@martinn.60823 жыл бұрын
Loved the explanation, thanks!
@ialimijororakotoniaina32749 жыл бұрын
your tutorials are amazing dude
@sikeeeee8 жыл бұрын
Simple and easy to understand. Keep up the good work.
@Csharp-video-tutorialsBlogspot8 жыл бұрын
Thank you very much for taking time to give feedback. This means a lot. I am very glad you found the videos useful. I have organised all the Dot Net & SQL Server videos in to playlists, which could be useful to you kzbin.infoplaylists?view=1&sort=dd If you need DVDs or to download all the videos for offline viewing please visit www.pragimtech.com/kudvenkat_dvd.aspx Slides and Text Version of the videos can be found on my blog csharp-video-tutorials.blogspot.com Tips to effectively use my youtube channel. kzbin.info/www/bejne/r2ibYYCtnb5qZtU If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel. kzbin.info If you like these videos, please click on the THUMBS UP button below the video. May I ask you for a favor. I want these tutorials to be helpful for as many people as possible. Please share the link with your friends and family who you think would also benefit from them. Good Luck Venkat
@sikeeeee8 жыл бұрын
Thank you for the links and yes i will share them during suitable situations. If by any chance would you be able to do Asp.net Identity Role Based Authorisation (Not Authentication) tutorials? I see the strong need for that tutorial in the web. As there arent much tutorials.
@khaledsaleh2868 жыл бұрын
Hi Kudvenkat, I think there is no difference between GroupBy and ToLookup extension method , I could get the department and the employees who are working for that department by using the following Code : var result = Employee.GetAllEmployees().ToLookup(c => c.Department); And then we need to iterate through the result to get them but the same result with group by the department so, what do u think? Is there any difference?
@flikcof79105 жыл бұрын
Good stuff. Well done
@ahmettachmuradov86303 жыл бұрын
the best teacher
@solvedplus8582 жыл бұрын
very good tutorial many thanks for it
@EricTViking7 жыл бұрын
Great video - thanks for sharing.
@zo629 жыл бұрын
How do you do the non sql version of that last linq statement
@emanshedid34699 жыл бұрын
+zo62 var result2 = db2.Employees.GroupBy(x => x.Department.Name).OrderBy(f => f.Key); foreach (var group in result2) { var OrderdGroup = group.OrderBy(y => y.FirstName); Label1.Text += group.Key + " _ " + group.Count() + ""; Label1.Text += "------------------------"; foreach (var r in OrderdGroup) { Label1.Text += r.FirstName + " , " + r.Department.Name + ""; } Label1.Text += ""; } i use windows form application it's approximately the same
@kiranhyde5 жыл бұрын
var empGroupByDept = Employee.GetAllEmployees() .GroupBy(x => x.Department) .OrderBy(x => x.Key); foreach (var group in empGroupByDept) { Console.WriteLine("{0} - {1}",group.Key,group.Count()); Console.WriteLine("--------------"); foreach (var employee in group.OrderBy(x =>x.Name)) { Console.WriteLine("{0} -- {1}",employee.Name,employee.Department); } Console.WriteLine(); Console.WriteLine(); }
@rodrigoantweber10 жыл бұрын
Amazing !
@skolker10 жыл бұрын
AMAZING!!!!!!!!!!
@kevinandressanterohernande65347 жыл бұрын
thanks for the video, they are very good
@saagarsoni310 жыл бұрын
thnx a lot sir
@emanshedid34699 жыл бұрын
it's an amazing tutorial :)
@zeetsoft3 жыл бұрын
Thank you
@gouravchouhan95116 жыл бұрын
how can we show this group count on web page by grid view or something else
@KarimAlbakry9 жыл бұрын
thanks a lot keep going
@jiturcm110 жыл бұрын
nice
@ahmedgadhassan8 жыл бұрын
How can Group Dynamic make user to choose any Field to Group @
@balarajug61436 жыл бұрын
Who to print in this data in GridView anybody can explain please ? var employeeGroup = from employee in Employee.GetAllEmployees() group employee by employee.Department; foreach (var group in employeeGroup) { Console.WriteLine("{0} - {1}", group.Key, group.Count()); Console.WriteLine("----------"); foreach (var employee in group) { Console.WriteLine(employee.Name + "\t" + employee.Department); } Console.WriteLine(); Console.WriteLine(); I am getting only Hr Record from below code var employeeGroup = from emp in Employee.GetAllEmployees() group emp by emp.Department; var result = string.Empty; foreach(var group in employeeGroup) { result = group.Key + " " + group.Count(); } GridView1.DataSource = result; GridView1.DataBind();
@sandeepreddypalannagari84896 жыл бұрын
Sir how to do group by item count in rdlc report using asp. Net c#
@sharmilaramalingam32776 жыл бұрын
Asquerable() example
@nice444b2 жыл бұрын
Super
@remiduplan84496 жыл бұрын
... and what if I want to retrieve the whole employee in the select new {} ? ... linq keeps me upset. And no tutorial (yours included) have ever change my mind about the stupidity, unlogical "order" of its syntax. or maybe .. unlike many other tuto, you explain badly this one. because if I want to get back the un-ordered employee ... syntax should be obvious. but I ca't even write "select employee" and egroup (if I understand well, is the equivalent of the employee.department) ... so why does it return the whole employee ? Linq is a gadget, not technical, it requires no skills but memory.