I have a table called Quotes in linq-to-sql that contains 2 columns: author and quote. How do you select both columns of a random row?
try it:
list.OrderBy(x => Guid.NewGuid()).Take(1).first();