public static T GetAttribute <T>(PropertyInfo propertyInfo) where T : Attribute => EntityCache.GetAttribute <T>(propertyInfo) ?? FluentCache.GetAttribute <T>(propertyInfo);
public static T GetAttribute <T>(Type type) where T : Attribute => EntityCache.GetAttribute <T>(type) ?? FluentCache.GetAttribute <T>(type);