我正在尝试分配静态列表< PropertyInfo> Entities类中的所有DbSet属性.
但是当代码运行时,List是空的,因为.Where(x => x.PropertyType == typeof(DbSet))总是返回false.
我在.Where(…)方法中尝试了多种变体,如typeof(DbSet<>),Equals(…),. UNDderlyingSystemType等,但没有效果.
为什么.Where(…)总是在我的情况下返回false?
我的代码:
public partial class Entities : DbContext { //constructor is omitted public static List<PropertyInfo> info = typeof(Entities).getProperties().Where(x => x.PropertyType == typeof(DbSet)).ToList(); public virtual DbSet<NotRelevant> NotRelevant { get; set; } //further DbSet<XXXX> properties are omitted.... }
解决方法
由于DbSet是一个单独的类型,您应该使用更具体的方法:
bool IsDbSet(Type t) { if (!t.IsGenericType) { return false; } return typeof(DbSet<>) == t.GetGenericTypeDefinition(); }
现在你的Where子句看起来像这样:
.Where(x => IsDbSet(x.PropertyType))