i want to retrieve 15 records from a table of around 50 records. but i want all records to be generated randomly. if i take a random number and write something like:
var result = (from r in sc.Subjects
where (r.SubName == sub && r.Level == lev)
select r).skip(randomnumber).take(10),
the starting record will be random but the next 9 will be in sequence. so any idea on how i can have all 10 records random using linq to sql?