我是MVC3的新手,我正在尝试实现客户用户和角色身份验证。我能够使用我的自定义数据库验证用户,但现在我想在同一个表中使用我的自定义角色。我按照以下链接中的说明进行了操作:
MVC Custom Roles and Validation
本教程让我把这段代码放在我的global.asax文件中。
protected void FormsAuthentication_OnAuthenticate(Object sender, FormsAuthenticationEventArgs e)
{
if (FormsAuthentication.CookiesSupported == true)
{
if (Request.Cookies[FormsAuthentication.FormsCookieName] != null)
{
try
{
//let us take out the username now
string roles = string.Empty;
string username = FormsAuthentication.Decrypt(Request.Cookies[FormsAuthentication.FormsCookieName].Value).Name;
using (RecipeEntities entities = new RecipeEntities())
{
**-->> User user = entities.KeyFobUsers.Single(u => u.username == username);
roles = user.AccessLevel.Trim();
}
//let us extract the roles from our own custom cookie
//Let us set the Pricipal with our user specific details
e.User = new System.Security.Principal.GenericPrincipal(new System.Security.Principal.GenericIdentity(username, "Forms"), roles.Split(';'));
}
catch
{
//something went wrong
}
}
}
}
目前在MVC上面的脚本中有“用户”#39;下划线表明'System.Web.HttpApplication.User' is a 'property' but is used like a 'type'
我已经用Google搜索并尝试了我在Stack上找到的链接,但没有任何内容适合我的问题。我只是试图将我的自定义数据库表中的角色转换为MVC的角色,以便我可以在某些窗口上使用权限。
有没有人有任何建议或想让我朝着正确的方向前进?
答案 0 :(得分:3)
编译器与HttpApplication和User
类的User
属性冲突。您可以使用var
来避免冲突:
var user = entities.KeyFobUsers.Single(u => u.username == username);
或者使用它所在的命名空间完全限定User
类:
MyNamespace.User user = ...