What is nameof() equivalent for the following expression:
query.Include(x => x.Collection.Select(y => y.Property))
$"{nameof(XType.Collection)}.{nameof(CollectionType.Property)}";
Would probably be the closest thing?