将泛型强制转换为接口类型 - 无法将类型为“System.RuntimeType”的对象强制转换为类型

时间:2012-09-17 17:50:26

标签: c# reflection

我有一些这样的课程:

public class Customer
{ }

public interface IRepository 
{ }

public class Repository<T> : IRepository
{ }

public class CustomerRepository<Customer>
{ }

然后,根据the answer to this question,我可以使用反射来获取每个*存储库的泛型引用的类型列表:

我最终想要的是Dictionary<Type, IRepository>

到目前为止,我有这个:

Dictionary<Type, IRepository> myRepositories = Assembly.GetAssembly(typeof(Repository<>))
.GetTypes()
.Where(typeof(IImporter).IsAssignableFrom)
.Where(x => x.BaseType != null && x.BaseType.GetGenericArguments().FirstOrDefault() != null)
.Select(
    x =>
    new { Key = x.BaseType != null ? x.BaseType.GetGenericArguments().FirstOrDefault() : null, Type = (IRepository)x })
.ToDictionary(x => x.Key, x => x.Type);

然而,它并不喜欢我的演员(IRepository)x
我收到以下错误:

  

无法转换类型为&System; Run.RuntimeType&#39;的对象输入&#39; My.Namespace.IRepository&#39;。

2 个答案:

答案 0 :(得分:8)

您无法转换(IRepository) type类型为Type类,

您可以使用Activator.CreateInstance创建对象CustomerRepository,您也不需要使用Select,而是直接使用ToDictionary,代码如下:

var myRepositories = Assembly.GetAssembly(typeof(Repository<>))
       .GetTypes()
       .Where(x => x.BaseType != null && 
                   x.BaseType.GetGenericArguments().FirstOrDefault() != null)

       .ToDictionary(x => x.BaseType.GetGenericArguments().FirstOrDefault(), 
                            x => Activator.CreateInstance(x) as IRepository );

答案 1 :(得分:2)

如果xSystem.Type个对象,就像xtypeof(Repository<>)一样,那么就不能像这样投出它。 Type不是实例化。

如果x没有“免费”类型参数,那就是x非通用或已关闭通用,那么(IRepository)Activator.CreateInstance(x)可能会创建一个x类型的对象。但我不确定这是你需要的。是否会有无参数的实例构造函数?