MVC AuthorizeAttribute Class 和现有 table

MVC AuthorizeAttribute Class and exsiting table

我有一个现有的 MVC 项目(我是 MVC 的新手),现在我需要添加一个登录部分。 我已经有一个 table 的用户和密码,我需要使用它们。

如何使用 AuthorizeAttribute Class 将两者结合起来? 我已经在使用数据库(带有 connectionString)并且一切正常,我只是不知道如何 "tell" AccountController 与我的数据库中的特定 table 一起工作。

如有任何帮助,我们将不胜感激!

知道了。 在 Global.asax:

WebSecurity.InitializeDatabaseConnection("ConnectionString", "tableName", "Id", "UserName", autoCreateTables: true);