c# – Linq .Where(type = typeof(xxx))比较总是假的

前端之家收集整理的这篇文章主要介绍了c# – Linq .Where(type = typeof(xxx))比较总是假的前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试分配静态列表< 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))
原文链接:https://www.f2er.com/csharp/243401.html

猜你在找的C#相关文章