How to get a Random Object using Linq

前端 未结 9 1441
心在旅途
心在旅途 2020-12-29 02:34

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         


        
相关标签:
9条回答
  • 2020-12-29 03:16
    var rand = new Random();
    var selectedPost = q.Skip(rand.Next(0, q.Count())).Take(1).FirstOrDefault();
    

    Optimally, you want to only ever make the function query for a single value, so you set up the Skip/Take to jump up to the sequence number matching the random number you're generating (bounded by dataset's itemcount, so the missing row problem bounding based on MAX(pkey) isn't an issue) and then snag the first item at that point in the sequence.

    In SQL this is the same as querying for SELECT Count(*) FROM q, then SELECT * FROM q LIMIT {0}, 1 where {0} is rand.Next(0, count), which should be pretty efficient.

    0 讨论(0)
  • 2020-12-29 03:17

    Use a Fisher-Yates-Durstenfeld shuffle.

    (You could use a helper/extension method to shuffle your IEnumerable<T> sequence. Alternatively, if you were using an IList<T> you could perform an in-place shuffle, if you prefer.)

    0 讨论(0)
  • 2020-12-29 03:19

    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.

    0 讨论(0)
  • 2020-12-29 03:21

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

    SelectedPost = q.OrderBy(qu => Guid.NewGuid()).First();
    
    0 讨论(0)
  • 2020-12-29 03:28

    I have product table in database ,every time user enters one product detail I want to show 10 similar products in below of page.And in every refresh this list must be change .it must come randomly.

    Linq looks like this

    var products =
                DataContextFactory.GetDataContext()
                    .Set<Product>()
                    .Where(x =>x.Id!=id)
                    .OrderBy(emp => Guid.NewGuid())
                    .Take(10).ToList();
    
    x.Id!=id 
    

    this only for not put selected product to list .

    It works perfect

    0 讨论(0)
  • 2020-12-29 03:30

    What about:

    SelectedPost = q.ElementAt(r.Next(1, Answers.Count()));
    

    Further reading:

    The comments below make good contributions to closely related questions, and I'll include them here, since as @Rouby points out, people searching for an answer to these may find this answer and it won't be correct in those cases.

    Random Element Across Entire Input

    To make all elements a candidate in the random selection, you need to change the input to r.Next:

    SelectedPost = Answers.ElementAt(r.Next(0, Answers.Count()));
    

    @Zidad adds a helpful extension method to get random element over all elements in the sequence:

    public static T Random<T>(this IEnumerable<T> enumerable)
    {
        if (enumerable == null)
        {
             throw new ArgumentNullException(nameof(enumerable));
        }
    
        // note: creating a Random instance each call may not be correct for you,
        // consider a thread-safe static instance
        var r = new Random();  
        var list = enumerable as IList<T> ?? enumerable.ToList(); 
        return list.Count == 0 ? default(T) : list[r.Next(0, list.Count)];
    }
    
    0 讨论(0)
提交回复
热议问题