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?

link|improve this question
Can you demonstrate what you'd like to do or how you want to use this? It's a bit unclear to me. – Jacob Jan 19 at 22:04
feedback

1 Answer

up vote 0 down vote accepted

Perhaps this is the parameter type you want:

Func<TModel, string, TProperty>

Or the expression form:

Expression<Func<TModel, string, TProperty>>

That would allow you to to pass something like this as the argument:

(model, str) => model.SomeCode(str)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.