不能使用像这样的对象为类制作通用假货
Fakes.ShimDataServiceRepository<object>.AllInstances.GetEntitiesExpressionOfFuncOfT0Boolean = (instance, filter) =>
{
return null;
}
该调用转到实际的代码实现。
但是当我们指定对象类型时,它正在工作
Fakes.ShimDataServiceRepository<Customer>.AllInstances.GetEntitiesExpressionOfFuncOfT0Boolean = (instance, filter) =>
{
return null;
}
但是我需要所有对象的通用单一假货,因此无需为每个对象重复代码。
我的问题是为什么假的<object>
不起作用?因为它是所有类的父级。
请任何人帮助我:(