我正试图致电Invoke()
,但它总是抛出:
对象与目标类型不匹配
我不确定要作为第一个参数传递什么 - 假设这是问题 - 我尝试了许多没有运气的事情。下面是我的代码:
var method = typeof(IBaseRepository<>).MakeGenericType(typeof(Domain.Model.Basic.City))
.GetMethod("Get", BindingFlags.Instance | BindingFlags.Public);
var entityData = method.Invoke(??, new[] { (object)id });
BaseRepository
是:
public class BaseRepository<T> : IBaseRepository<T>
{
public virtual T Get(object id) { }
}
City
课程是:
public class City : Entity
Entity
是一个抽象类:
public abstract class Entity
作为第一个Invoke的参数,我尝试使用City
的实例 - 这应该是正确的情况 - 以及Entity
的实例以及其他我确定无法实际工作的事情。
答案 0 :(得分:0)
//you are missing this part (FYI, this won't work if BaseRepo<T> is abstract)
var repoType = typeof(BaseRepository<>).MakeGenericType(typeof(City));
var repo = repoType.GetConstructor(Type.EmptyTypes).Invoke(null);
int id = 0; //whatever your id is...
var method = typeof(IBaseRepository<>).MakeGenericType(typeof(City))
.GetMethod("Get", BindingFlags.Instance | BindingFlags.Public);
var entityData = (Entity)method.Invoke(repo, new[] { (object)id }) ;