gpt4 book ai didi

asp.net-mvc - 我的 MVC 5 模板中没有 ApplicationRoleManager 类

转载 作者:行者123 更新时间:2023-12-01 18:04:54 25 4
gpt4 key购买 nike

当我尝试将 app.CreatePerOwinContext(ApplicationRoleManager.Create) 添加到 configauth 时,我被告知 applicationRoleManager 不存在。有谁知道为什么吗?

using Microsoft.Owin.Security.OAuth;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin;
using Microsoft.Owin.Security.Cookies;
using Microsoft.Owin.Security.DataProtection;
using Microsoft.Owin.Security.Google;
using Owin;
using System;
using LaCeibaNetv4.Models;

namespace LaCeibaNetv4
{
public partial class Startup
{
// For more information on configuring authentication, please visit http://go.microsoft.com/fwlink/?LinkId=301864
public void ConfigureAuth(IAppBuilder app)
{
// Configure the db context and user manager to use a single instance per request
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);

最佳答案

我遇到了同样的问题,并遇到了这段代码,我用它来将类添加到我的项目中:

public class ApplicationRoleManager : RoleManager<IdentityRole>
{
public ApplicationRoleManager(IRoleStore<IdentityRole,string> roleStore)
: base(roleStore) { }

public static ApplicationRoleManager Create(
IdentityFactoryOptions<ApplicationRoleManager> options,
IOwinContext context)
{
var manager = new ApplicationRoleManager(
new RoleStore<IdentityRole>(context.Get<ApplicationDbContext>()));
return manager;
}
}

此外,请记住在启动时通过在 Startup.Auth.cs 中添加这段代码来配置它:

app.CreatePerOwinContext<ApplicationRoleManager>(Application‌​RoleManager.Create); 

完整文章可在此处获取:http://www.codeproject.com/Articles/762428/ASP-NET-MVC-and-Identity-Understanding-the-Basics

关于asp.net-mvc - 我的 MVC 5 模板中没有 ApplicationRoleManager 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25417024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com