I have a question with linq. here I consult a group of users, in this case 250 arrive.
var usuarios = _db.usuariosmv10.Where(x => x.campana.Equals(id)).ToList();
So, in the users variable I have a list of 250 users, now that's what I need.
I want to be able to group these 250 users into groups of 50, so I have a list of 5 left in a variable where those 5 contain 50 users, how is that possible?
I appreciate the advice.