I am trying to get a random object within linq. Here is how I did.

//get all the answers
var Answers = q.Skip(1).Take(int.MaxValue);
//get the random number by the number of answers
int intRandomAnswer = r.Next(1, Answers.Count());
int count = 0;

//locate the answer
foreach(var Answer in Answers)
{
    if (count == intRandomAnswer)
    {
        SelectedPost = Answer;
        break;
    }
    count++;
}

Is this the best way to do this?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

What about:

SelectedPost = q.ElementAt(r.Next(1, Answers.Count()));
link|improve this answer
This is awesome..Let me ask where did you learn c#? What books did you read? – Luke101 Jul 4 '10 at 5:04
Been so long, I don't remember. I just code these days. However, I'd recommend C# 4.0 by Joseph Albahari (albahari.com/nutshell) and CLR via C# by Jeffrey Richter (amazon.com/CLR-Via-C-Pro-Developer/dp/0735621632). – codekaizen Jul 4 '10 at 5:10
Oh, and I understand some guy by the name of Jon Skeet might know a thing or two about C# and wrote a book about it. ;) – codekaizen Jul 4 '10 at 5:14
feedback

Use a Fisher-Yates-Durstenfeld shuffle. Here's a general purpose extension method that does just that:

// use First for a single random answer or Take(n) for multiple answers
var SelectedPost = Answers.Shuffle().First();

// ...

public static class EnumerableExtensions
{
    public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source)
    {
        // error checking etc removed for brevity

        Random rng = new Random();
        T[] sourceArray = source.ToArray();

        for (int n = 0; n < sourceArray.Length; n++)
        {
            int k = rng.Next(n, sourceArray.Length);
            yield return sourceArray[k];

            sourceArray[k] = sourceArray[n];
        }
    }
}
link|improve this answer
You can do this shuffle without another array by starting the index at the end and randomly selecting an index of the elements before the current index, and swapping the values. This continues in a loop, decrementing the current index, until the beginning is reached. – codekaizen Jan 28 at 23:02
@codekaizen: You can do that if your sequence is indexable (ie, if it's really an IList<T> of some kind). You can't guarantee that any arbitrary IEnumerable<T> will be indexable though. – LukeH Jan 29 at 21:21
feedback

Another wacky approach (not the most efficient for larger data sets):

SelectedPost = q.OrderBy(qu => Guid.NewGuid()).First();
link|improve this answer
this is really took some thought..I dont think I would have thought of this technique myself..very fascinating – Luke101 Jul 4 '10 at 5:00
i typically do it with an OrderBy and an instance of Random, but NewGuid works too I guess :) – James Manning Jul 4 '10 at 5:27
feedback

Pulling all of the answers and looping them isn't the most efficient way as you're moving lots of data from the database. If you're using an integer primary key that's automatically incrementing, you should get the Max of your primary key and then find the random integer within that range. Then directly get the single answer based on the primary key derived from the random function.

link|improve this answer
somewhat assumes that particular one is still around, but you could query for the row that has max(pk) <= choice – James Manning Jul 4 '10 at 5:27
Good point, there could be some that have been deleted or where the pk is not monotonic within that range, probably best to get the range out of a subquery to ensure that it exists. – Turnkey Jul 4 '10 at 13:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.