I have a function like this
public BuildColumn<TModel> TEST<TProperty>(
Expression<Func<TModel, TProperty>> expression,
string DisplayName,
object HTMLAttributes,
Expression<Func<TModel, string, TProperty>> SpecialHTMLAttributes,
bool Show) {}
If you look at the 4th argument, it's an Expression<Func<TModel,string,TProperty>>. What I am trying to do here is pass a lambda expression and a string value, maybe "abc" . But I could not figure out how to pass them in this argument or how to use it.
Does anyone knows how to pass 2 parameters to a System.Func<>, or is there any better alternative?