以下のコードをスキップできるように、UserIdのみを使用して標準のASP .NET MVC4プロジェクト でユーザーを認証することは可能ですか?
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
{