次のような式を作成しました。
expression = x => x.CustomerName.StartsWith(comboParams.ParamValueText, true, null);
次のような一般的なものとして顧客名にアクセスしたいと思います。
expression = x => x["CustomerName"] and access the StartsWith function
私はすでに次のようなコードを試しました
expression x => x.GetType().GetProperty("CustomerName").Name.StartsWith(comboParams.ParamValueText, true, null); --> it doesn't seem to work :(
このタスクを達成する方法はありますか。私はこれを式の共通の実装にするために作成しています。おそらく、このための関数を作成し、文字列を受け入れるだけです。ありがとう!