For completeness' sake:
It is also possible to include nested properties directly via Include in case they are not collection properties like so:
_dbSet
.Include(tier => tier.Contact.Titre)
.Include(tier => tier.Contact.TypeContact)
.Include(tier => tier.Contact.Langue);