I have a list of user ids and want to get a few random users from a database which doesn't contain users from my list using LINQ-SQL.
For example:
//it's user ids
var existsUsers = new[]{1,2,3,4}
// I want to implement this function:
List<User> users = GetRandomUsers(randomUsersCount, existsUsers)