考虑使用查询表示法编写的这个 LINQ 表达式:
List<Person> pr = (from p in db.Persons
join e in db.PersonExceptions
on p.ID equals e.PersonID
where e.CreatedOn >= fromDate
orderby e.CreatedOn descending
select p)
.ToList();
问题:您将如何使用点表示法编写此 LINQ 表达式?