I have this linq query, which is working fine, but I want to make it shorter by using a lambda expression. Any suggestions or examples might help.
selectedPersons = (from d in entities.PERSONS_DATA
where d.PERSON_ID == pid
select d).First();