在C#中将类型约束为任何通用类型的实例

时间:2016-01-15 18:33:27

标签: c# generics

我想创建一个可以与多个数据访问系统一起使用的基本实体。泛型类型参数表示属性的类型。

public interface IEntity<T> {
    public T Id {get; set;}
}

我希望能够将此接口用作泛型类型约束,而无需在泛型方法中指定类型参数。

public void Read<T>(Expression<Func<T, bool>> expression) where T : IEntity<**any type**>

这可能吗?如果没有,有哪些替代方案?

2 个答案:

答案 0 :(得分:7)

你可以这样做。添加第二个泛型类型参数:

public void Read<T, U>(Expression<Func<T, bool>> expression) where T : IEntity<U>

答案 1 :(得分:2)

对该类型参数使用约束,并在声明中指定这两种类型。这推动了关于什么东西在链条上的决定。

inherited: true
owners:
- user-a@example.com
- user-b@example.com