Beispiel #1
0
 public static T GetAttribute <T>(PropertyInfo propertyInfo) where T : Attribute
 => EntityCache.GetAttribute <T>(propertyInfo) ?? FluentCache.GetAttribute <T>(propertyInfo);
Beispiel #2
0
 public static IEnumerable <PropertyInfo> GetProperties(Type type)
 => EntityCache.GetProperties(type);
Beispiel #3
0
 public static T GetAttribute <T>(Type type) where T : Attribute
 => EntityCache.GetAttribute <T>(type) ?? FluentCache.GetAttribute <T>(type);