What's the right syntax for this?
var words= from h in db.Words
orderby(a => Guid.NewGuid()).ToList()) //error
select h;
var words= from h in db.Words
orderby((a => Guid.NewGuid()).ToList()) //error
select h;
var words= from h in db.Words
orderby(Guid.NewGuid()) //no error but doesn't sort
select h;