I'm aware that we can access model meta data using
var metaData = ModelMetadataProviders.Current.GetMetadataForType(() => Model, Model.GetType());
What I'm looking for is a way to access model metadata just using it's class name, without it's instance (maybe something like ModelMetadataProviders.Current.GetMetadataForType(Model.GetType())). Is there an easy way to achieve that?