我遇到了与演员有关的问题。 我有域类
public class Product: Entity<int>
{
//....
}
我有包装
public class CommonWrapperDTO<T> where T : Entity<int>
{
public T content {get; set;}
public string[] Information {get; set;}
}
所以,我需要转换
//variable "result" have type a CommonWrapperDTO<Product>
var resultValue = result as CommonWrapperDTO<Entity<int>>;
但as
会返回null
。
我做错了什么?