コード例 #1
0
ファイル: CacheManager.cs プロジェクト: mhfarzin/SimpleDAL
 public static T GetAttribute <T>(PropertyInfo propertyInfo) where T : Attribute
 => EntityCache.GetAttribute <T>(propertyInfo) ?? FluentCache.GetAttribute <T>(propertyInfo);
コード例 #2
0
ファイル: CacheManager.cs プロジェクト: mhfarzin/SimpleDAL
 public static IEnumerable <PropertyInfo> GetProperties(Type type)
 => EntityCache.GetProperties(type);
コード例 #3
0
ファイル: CacheManager.cs プロジェクト: mhfarzin/SimpleDAL
 public static T GetAttribute <T>(Type type) where T : Attribute
 => EntityCache.GetAttribute <T>(type) ?? FluentCache.GetAttribute <T>(type);