I've gotten half way there:
var customerList = from c in dc.Customers orderBy c.Sales select c;
That gets me a collection of customers. How do I use the equivalent of the top operator in SQL?
Thanks,
John
var customerList = (from c in dc.Customers orderBy c.Sales select c).Take(1);