我已经开始使用 C# Expression 构造,并且我有一个关于泛型如何在以下情况下应用的问题:
考虑我有一个类型MyObject
,它是许多不同类型的基类。在这个类中,我有以下代码:
// This is a String Indexer Expression, used to define the string indexer when the object is in a collection of MyObjects
public Expression<Func<MyObject, string, bool>> StringIndexExpression { get; private set;}
// I use this method in Set StringIndexExpression and T is a subtype of MyObject
protected void DefineStringIndexer<T>(Expression<T, string, bool>> expresson) where T : MyObject
{
StringIndexExpression = expression;
}
这就是我的使用方式DefineStringIndexer
:
public class MyBusinessObject : MyObject
{
public string Name { get; set; }
public MyBusinessObject()
{
Name = "Test";
DefineStringIndexer<MyBusinessObject>((item, value) => item.Name == value);
}
}
但是在里面的赋值中DefineStringIndexer
我得到了编译错误:
无法将类型 System.Linq.Expression.Expression< MyObject, string, bool > 隐式转换为 System.Linq.Expression.Expression < MyBusinessObject, string, bool >>
在这种情况下,我可以将泛型与 C# 表达式一起使用吗?我想在 DefineStringIndexer 中使用 T ,这样我就可以避免在 lambda 中转换 MyObject 。