多级属性的 nameof() 运算符

nameof() operator for Multiple Levels of Properties

以下表达式的 nameof() 等效项是什么:

query.Include(x => x.Collection.Select(y => y.Property))
 $"{nameof(XType.Collection)}.{nameof(CollectionType.Property)}";

可能是最接近的?