The rails convention is to use New and Create for RESTful action names. The .NET MVC convention appears to be to use Create for both (usually with a post restrictor on the action intended to the true 'Create' method).
Personally I would prefer to use New and Create in .net but have been using Create for both given the convention. What (if any) is the benefit of the .NET MVC convention of using Create for both actions?
The same goes for Edit and Update?