how I can get a random row from a selection in my linq query?
I tried:
Bot bot = (from a in dc.Bot
select a).OrderBy(x => Guid.NewGuid()).First();
But doesn't work, I ever get the same.
|
feedback
|
|
Something like this might work:
| |||||
feedback
|
|
I would use Skip
| |||||||
feedback
|
|
I have an extension method for that in my archive:
Usage:
The advantage of this method is that you don't need to know how many items there are beforehand, so you don't have to run the query twice. | |||||||
feedback
|