What is the best (and fastest) way to retreive a random row using Linq to SQL when I have a condition, e.g. some field must be true ?
feedback
|
|
You can do this at the database, by using a fake UDF; in a partial class, add a method to the data context:
Then just
Note that this is only suitable for small-to-mid-size tables; for huge tables, it will have a performance impact at the server, and it will be more efficient to find the number of rows ( for count approach:
| |||||||||||||||
feedback
|
|
EDIT: I've only just noticed this is LINQ to SQL, not LINQ to Objects. Use Marc's code to get the database to do this for you. I've left this answer here as a potential point of interest for LINQ to Objects. Strangely enough, you don't actually need to get the count. You do, however, need to fetch every element unless you get the count. What you can do is keep the idea of a "current" value and the current count. When you fetch the next value, take a random number and replace the "current" with "new" with a probability of 1/n where n is the count. So when you read the first value, you always make that the "current" value. When you read the second value, you might make that the current value (probability 1/2). When you read the third value, you might make that the current value (probability 1/3) etc. When you've run out of data, the current value is a random one out of all the ones you read, with uniform probability. To apply that with a condition, just ignore anything which doesn't meet the condition. The easiest way to do that is to only consider the "matching" sequence to start with, by applying a Where clause first. Here's a quick implementation. I think it's okay...
| |||||||
feedback
|
|
Another sample:
| |||||||
feedback
|
|
One way to achieve efficiently is to add a column to your data The partial query to access the table in random order is ...
This does an XOR operation in the database and orders by the results of that XOR. Advantages:-
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. | |||
feedback
|
|
if you want to get e.g.
here I used E.F, and the Table is a Dbset | |||
|
feedback
|
|
If the purpose of getting random rows is sampling, I have talked very briefly here about a nice approach from Larson et al., Microsoft Research team where they have developed a sampling framework for Sql Server using materialized views. There is a link to the actual paper also. | |||
|
feedback
|
|
Why make it random? What about foo.Where(p => p.test == condition).First(); If you really want random, you can write an extension method that will return a random row where the random number is constrained between 0 and the number of elements - 1 | |||||
feedback
|
|
I have random function query against datatables. var result2 = (from result in dt.AsEnumerable().OrderBy( result => Guid.NewGuid()) select result).Take(3) ; this help me a lot.. | |||
|
feedback
|