Is there a way to return a random row from a table using LINQToSQL?
technically:
var randomRow = (from rows in db.Table select shipper).First();
because you can't ever be sure of the row order, unless you specify the order by clause.