I have a quick question becuase my brain won’t work with me…
Where do I specify that I want the user_id’s in ‘Users’ that are NOT in ‘Groups’ ?
db.Users.Join(db.Groups, a => a.user_id, b => b.user_id, (a, b) => new SelectListItem
{
Value = a.user_id.ToString(),
Text = a.surname + " " + a.lastname
});
The following should work (assuming that I understood your question correctly):