値を動的に読み取るオブジェクトのすべてのプロパティに対してラムダ式を作成したいと考えています。
私がこれまでに持っているもの:
var properties = typeof (TType).GetProperties().Where(p => p.CanRead);
foreach (var propertyInfo in properties)
{
var getterMethodInfo = propertyInfo.GetGetMethod();
var entity = Expression.Parameter(typeof (TType));
var getterCall = Expression.Call(entity, getterMethodInfo);
var lambda = Expression.Lambda(getterCall, entity);
var expression = (Expression<Func<TType, "TypeOfProperty">>) lambda;
var functionThatGetsValue = expression.Compile();
}
functionThatGetsValue
「TypeOfProperty」がハードコードされている限り、コードはうまく機能します。「TypeOfPoperty」を動的に渡すことができないことはわかっています。目標を達成するために何ができますか?