vote up 2 vote down star

from the free dinner book for asp.net MVC

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, FormCollection formValues) {
    Dinner dinner = dinnerRepository.GetDinner(id);
    UpdateModel(dinner);
    dinnerRepository.Save();
    return RedirectToAction("Details", new { id = dinner.DinnerID });
}

how to convert this line into vb.net?

return RedirectToAction("Details", new { id = dinner.DinnerID });

more the new { id = dinner.DinnerID } part

thanks

flag

Probably would be nice to know what's the signature of RedirectToAction – gbianchi May 13 at 15:49
@gbianchi, I'm following 100% of what is said in the pdf but doing it into vb.net – Fredou May 13 at 15:50

4 Answers

vote up 6 vote down check

Try this

Return RedirectToAction("Details", New With { .id = dinner.DinnerID})

In VB the anonymous type declaration syntax, as well as normal object initializers, needs a "." prefix on all of the property names. This is consistent with other VB features such as the With context.

link|flag
Pedantically edited to captalise the R of "return". :P – Noldorin May 13 at 15:53
thanks ! – Fredou May 13 at 15:54
@Norldorin, hah. At least I didn't mispell it! – JaredPar May 13 at 15:57
We are programmers not spelling bee champs... heck even I want to beat up those nerds ;) – Matthew Whited May 13 at 16:11
vote up 1 vote down

That is using an anonymous type, so it will look like this:

Return RedirectToAction("Details", New With { .id = dinner.DinnerID })
link|flag
vote up 0 vote down

This should work:

Return RedirectToAction("Details", New With { .id = dinner.DinnerID })
link|flag
vote up 0 vote down
New With {.id = dinner.DinnerID}
link|flag

Your Answer

Get an OpenID
or

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