Good afternoon,
I have a listview filled using linqdatasource + entity framework iqueryable query.
The query uses a take (top on t-sql) like this:
context.Categories().OrderBy(c=>c.Name).Take(20);
So it brings me the 20 records I want ordered by name.
Now I want to show those 20 records on a random order. Whats the best approach acomplish this?