I found this handy query;
SELECT TOP 1 * FROM Advertising ORDER BY NEWID()
but need to turn it into a LINQ
query.
I tried doing something like;
var a = (from record in Advertising
select record)
but can't figure out how to do the ordering so that a random record is returned.