gpt4 book ai didi

c# - 如何使用反射返回从泛型子类化的所有类,而不给出特定的泛型类型

转载 作者:太空狗 更新时间:2023-10-29 21:14:33 24 4
gpt4 key购买 nike

我正在尝试编写一个使用反射的方法来返回所有类,这些类是使用泛型的类的子类,而不受泛型类型的限制。因此,例如,在 EF 中,我想找到所有映射类。这些类的设置如下:

public class clientMap : EntityTypeConfiguration<Client> {}

我想在我的程序集中找到属于 EntityTypeConfiguration<T> 的子类的所有类, 未指定 Client具体作为T。我想在我的应用程序中返回所有类的实体类型配置而不对其进行硬编码。

如果没有泛型,我将遍历程序集中的类型,检查是否 type.IsSubclassOf(typeof(BaseClass)) ,但是我不确定在处理泛型时如何做到这一点。

最佳答案

我相信你想要这样的东西:

static class TypeExtensions {
public static bool IsDerivedFromOpenGenericType(
this Type type,
Type openGenericType
) {
Contract.Requires(type != null);
Contract.Requires(openGenericType != null);
Contract.Requires(openGenericType.IsGenericTypeDefinition);
return type.GetTypeHierarchy()
.Where(t => t.IsGenericType)
.Select(t => t.GetGenericTypeDefinition())
.Any(t => openGenericType.Equals(t));
}

public static IEnumerable<Type> GetTypeHierarchy(this Type type) {
Contract.Requires(type != null);
Type currentType = type;
while (currentType != null) {
yield return currentType;
currentType = currentType.BaseType;
}
}
}

这些测试通过:

class Foo<T> { }
class Bar : Foo<int> { }
class FooBar : Bar { }

[Fact]
public void BarIsDerivedFromOpenGenericFoo() {
Assert.True(typeof(Bar).IsDerivedFromOpenGenericType(typeof(Foo<>)));
}

[Fact]
public void FooBarIsDerivedFromOpenGenericFoo() {
Assert.True(typeof(FooBar).IsDerivedFromOpenGenericType(typeof(Foo<>)));
}

[Fact]
public void StringIsNotDerivedFromOpenGenericFoo() {
Assert.False(typeof(string).IsDerivedFromOpenGenericType(typeof(Foo<>)));
}

关于c# - 如何使用反射返回从泛型子类化的所有类,而不给出特定的泛型类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6426949/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com