When I create a new record, I'm trying to redirect to the edit page with this.
return RedirectToAction("Edit", "Organization", new { OrgId = organization.OrgId });
However, the result is this.
http://localhost:1626/Organization/Edit?OrgId=5
when it should be
http://localhost:1626/Organization/Edit/5
Why is this?