私は次のクラスを持っています
public class MyClass
{
public bool Delete(Product product)
{
// some code.
}
}
今、私はこのようなヘルパークラスを持っています
public class Helper<T, TResult>
{
public Type Type;
public string Method;
public Type[] ArgTypes;
public object[] ArgValues;
public Helper(Expression<Func<T, TResult>> expression)
{
var body = (System.Linq.Expressions.MethodCallExpression)expression.Body;
this.Type = typeof(T);
this.Method = body.Method.Name;
this.ArgTypes = body.Arguments.Select(x => x.Type).ToArray();
this.ArgValues = ???
}
}
アイデアは、どこかからこのコードを使用することです:
// I am returning a helper somewhere
public Helper<T> GetMethod<T>()
{
var product = GetProduct(1);
return new Helper<MyClass>(x => x.Delete(product));
}
// some other class decides, when to execute the helper
// Invoker already exists and is responsible for executing the method
// that is the main reason I don't just comile and execute my Expression
public bool ExecuteMethod<T>(Helper<T> helper)
{
var instance = new MyClass();
var Invoker = new Invoker(helper.Type, helper.Method, helper.ArgTypes, helper.ArgValues);
return (bool)Invoker.Invoke(instance);
}
私が立ち往生している点は、式自体から引数を抽出する方法です。
私はこの方法を見つけました
((ConstantExpression)((MemberExpression)body.Arguments[0]).Expression).Value
「製品」フィールドを持つオブジェクトタイプのようですが、もっと簡単な解決策が必要だと思います。
助言がありますか。
アップデート
明確にするために、達成したいことに従ってコードを変更しました。私の実際のアプリケーションでは、同じことを行うクラスが既にありますが、式ツリーはありません。
var helper = new Helper(typeof(MyClass), "Delete",
new Type[] { typeof(Product) }, new object[] {product}));
my の主な理由は、Helper<T>
コンパイル時にメソッド シグネチャが有効かどうかをチェックすることです。
更新 2
これは私の現在の実装です。リフレクションを使用せずに値にアクセスするより良い方法はありますか?
public Helper(Expression<Func<T, TResult>> expression)
{
var body = (System.Linq.Expressions.MethodCallExpression)expression.Body;
this.Type = typeof(T);
this.Method = body.Method.Name;
this.ArgTypes = body.Arguments.Select(x => x.Type).ToArray();
var values = new List<object>();
foreach(var arg in body.Arguments)
{
values.Add(
(((ConstantExpression)exp.Expression).Value).GetType()
.GetField(exp.Member.Name)
.GetValue(((ConstantExpression)exp.Expression).Value);
);
}
this.ArgValues = values.ToArray();
}