When calling for the first time OrderBy, it seems like it iterates on all types of all loaded assemblies. That does not scale and consumes 20% of the CPU for ~1 minute during the startup of my application.
Additionally, it seems like there is no synchronization around this operation so all threads are racing.
Is there an opportunity to lazily load the type metadata individually?