vote up 2 vote down star
1

Can I map an action's parameter to a different name?

I want to use reserved words as parameters for an action, such as:

search?q=someQuery&in=location&for=x

So "in" and "for" can't be used as parameter names of the method. Is there a built in feature for that or should I create a model binder?

Thanks.

flag

1 Answer

vote up 6 vote down check

You can use the '@' notation to make the name be interpreted literally rather than a reserved word in c#.

public ActionResult Test(string @for)
{
    var something = @for;
}
link|flag
Great. Thanks! Totally forgot about it (like @class in html attributes). But what about mapping a query item like "in" to a parameter named "inLocation"? I might just create ActionParameterNameAttribute with usage like: [ActionParameterName("in")] inLocation. Exactly like [ActionName] does for actions. – elad.ossadon Jul 26 at 23:36
1  
public ActionResult MyMethod([Bind(Prefix="in")] string inLocation) { ... } – Levi Jul 27 at 5:32
@Levi - that won't help. – Arnis L. Jul 27 at 6:09
@Arnis L. - What is wrong with the proposal? Renaming parameters as suggested by elad.ossadon's comment is precisely one of the scenarios [Bind(Prefix=...)] was designed to cover. – Levi Jul 27 at 8:14
That Bind trick worked great. Thanks. – elad.ossadon Jul 31 at 19:56
show 1 more comment

Your Answer

Get an OpenID
or

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