I want to add a distinct to the code below. I cannot figure out the exact syntax. Thanks in advance.
var testdates = (from o in db.FMCSA_ME_TEST_DATA
orderby o.DATE
select new
{
RequestDate = o.DATE
});