i'm using Asp.net MVC with Sharp Architecture.

I have this code:

return _repositoryKeyWord.FindAll(x => x.Category.Id == idCAtegory)
                .Take(50).ToList();

How can i order by random? Note: i don't want to order the 50 extracted items, i want order before and then extract 50 items.

thks

link|improve this question

50% accept rate
Are you saying that you want the entire list randomized and then you want to retrieve the first 50 items? – Ben Gribaudo Jul 26 '10 at 21:45
1  
possible duplicate of Random row from Linq to Sql – Matthew Whited Jul 27 '10 at 13:12
feedback

6 Answers

up vote 14 down vote accepted

One way to achieve efficiently is to add a column to your data Shuffle that is populated with a random int (as each record is created).

The query to access the table then becomes ...

Random random = new Random();
int seed = random.Next();
result = result.OrderBy(s => (~(s.Shuffle & seed)) & (s.Shuffle | seed)); // ^ seed);

This does an XOR operation in the database and orders by the results of that XOR.

Advantages:-

  1. Efficient: SQL handles the ordering, no need to fetch the whole table
  2. Repeatable: (good for testing) - can use the same random seed to generate the same random order
  3. Works on most (all?) Entity Framework supported databases

This is the approach used by my home automation system to randomize playlists. It picks a new seed each day giving a consistent order during the day (allowing easy pause / resume capabilities) but a fresh look at each playlist each new day.

link|improve this answer
1  
This solution made me go ooooo and ahhhh. – jfar Jul 27 '10 at 2:39
jfar: Me too; 'tis pwesome. Although I just used the PK (which is an int) instead of a Shuffle field and it works just fine. Thanks Hightechrider! – Frank Tzanabetis Aug 3 '10 at 0:26
feedback

You can do this in T-Sql as described here. I don't think you can do it in linq without loading the whole result set into memory and then throwing most of it away, which you do not want to do.

link|improve this answer
feedback

Probably best to write your own extension method to do it.

 public static class Extensions
{
    static readonly Random random = new Random();
    public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> items)
    {
        return Shuffle(items, random);
    }
    public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> items, Random random)
    {
        // Un-optimized algorithm taken from
        // http://en.wikipedia.org/wiki/Knuth_shuffle#The_modern_algorithm
        List<T> list = new List<T>(items);
        for (int i = list.Count - 1; i >= 1; i++)
        {
            int j = random.Next(0, i);
            T temp = list[i];
            list[i] = list[j];
            list[j] = temp;
        }
        return list;
    }
}

Edit: Be sure to do .Take(50).Shuffle() rather than .Shuffle().Take(50); otherwise, at best it'll crash and at worst it'll take forever.

Edit 2: Never mind, this won't work if you want to query a random set of 50.

link|improve this answer
Random.Next isn't thread safe, so you can't use static variable to store shared Random value here. – Alex Yakunin Nov 10 '11 at 21:52
And certainly, there must be i--, not i++ – Alex Yakunin Nov 10 '11 at 21:55
feedback
Random random = new Random();
return _repositoryKeyWord.FindAll(x => x.Category.Id == idCAtegory)
                .OrderBy(x => r.Next())
                .Take(50).ToList();
link|improve this answer
Hah, I like that. If it's using quick sort though, that might crash. I know that trying to use Array.Sort on an inconsistent parameter will cause an exception. – Rei Miyasaka Jul 26 '10 at 21:48
I'd like to see the sql that generates. Is it returning the entire table, then sorting and throwing away everything but the top 50 records? – Gabe Moothart Jul 26 '10 at 21:50
Ah, yeah, that should be .Take(50).OrderBy(x => r.Next()), not the other way around. Edit: never mind, I misread the question. – Rei Miyasaka Jul 26 '10 at 21:58
@Rei Miyasaka: Why, he specifically states he doesn't want to sort just the 50 items? Does the SQL of reversing them generate correctly according to spec? – Yuriy Faktorovich Jul 26 '10 at 22:01
feedback

How about this?

return _repositoryKeyWord.FindAll(x => x.Category.Id == idCAtegory)
  .OrderBy (x=> new Guid())
  .Take(50).ToList();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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