- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个上下文(带有脚手架)和一个用户。我还设置了播放数据库(并创建了一个迁移)。这非常有效!我现在只想创建一个角色,然后将其分配给用户。
为此,我修改了我的 startup.cs 文件以便继续(我找不到说明如何创建/分配具有与 ApplicationDbContext 不同上下文的角色的教程)。
我对代码中的错误很满意(至少我认为是这样),但我不知道如何处理它以及用什么替换对象。
所以我创建了一个 CreateRoles 方法来接收一个 serviceProvider(类型为 IServiceProvider),在这个方法中我尝试初始化 romes,然后将它们分配给我的数据库的不同用户。
我的担忧就在这里(我认为):
var RoleManager = serviceProvider.GetRequiredService > ();
确实,除了我使用 jakformulaireContext 之外,我认为它用于 ApplicationDbContext。
我的问题是:我应该更换什么(如果那是我需要更换的)?
如果您需要模式信息或模式代码,请告诉我!
启动类
公开课启动{ public Startup(IConfiguration配置) { 配置=配置;
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
options.CheckConsentNeeded = context => true;
options.MinimumSameSitePolicy = SameSiteMode.None;
});
services.AddDbContext<jakformulaireContext>(options =>
options.UseSqlServer(
Configuration.GetConnectionString("jakformulaireContextConnection")));
services.AddDefaultIdentity<jakformulaireUser>(configg =>
{
configg.SignIn.RequireConfirmedEmail = true;
}).AddEntityFrameworkStores<jakformulaireContext>(); ;
var config = new AutoMapper.MapperConfiguration(cfg =>
{
cfg.AddProfile(new MappingProfile());
});
var mapper = config.CreateMapper();
services.AddSingleton(mapper);
//services.AddAutoMapper();
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
services.AddDistributedMemoryCache();
services.AddSession();
// requires
// using Microsoft.AspNetCore.Identity.UI.Services;
// using WebPWrecover.Services;
services.AddSingleton<IEmailSender, EmailSender>();
services.Configure<AuthMessageSenderOptions>(Configuration);
services.AddCors(options =>
{
options.AddPolicy("CorsPolicy",
builder => builder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader()
.AllowCredentials());
});
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, IServiceProvider serviceProvider)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseDatabaseErrorPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseSession();
app.UseAuthentication();
app.UseCors("CorsPolicy");
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
//CreateRoles(serviceProvider).Wait();
}
private async Task CreateRoles(IServiceProvider serviceProvider)
{
//initializing custom roles
var RoleManager = serviceProvider.GetRequiredService<RoleManager<IdentityRole>>();
var UserManager = serviceProvider.GetRequiredService<UserManager<jakformulaireUser>>();
string[] roleNames = { "Guest", "Member", "Admin" };
IdentityResult roleResult;
foreach (var roleName in roleNames)
{
var roleExist = await RoleManager.RoleExistsAsync(roleName);
if (!roleExist)
{
//create the roles and seed them to the database: Question 1
roleResult = await RoleManager.CreateAsync(new IdentityRole(roleName));
}
}
jakformulaireUser user = await UserManager.FindByEmailAsync("test@test.com");
if (user == null)
{
user = new jakformulaireUser()
{
UserName = "test@test.com",
Email = "test@test.com",
EmailConfirmed = true
};
await UserManager.CreateAsync(user, "Test123$");
}
await UserManager.AddToRoleAsync(user, "Member");
jakformulaireUser user1 = await UserManager.FindByEmailAsync("test@live.be");
if (user1 == null)
{
user1 = new jakformulaireUser()
{
UserName = "test@live.be",
Email = "test@live.be",
EmailConfirmed = true
};
await UserManager.CreateAsync(user1, "Test123$");
}
await UserManager.AddToRoleAsync(user1, "Admin");
}
上下文
public class jakformulaireContext : IdentityDbContext<jakformulaireUser>
{
public jakformulaireContext(DbContextOptions<jakformulaireContext> options)
: base(options)
{
}
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
// Customize the ASP.NET Identity model and override the defaults if needed.
// For example, you can rename the ASP.NET Identity table names and more.
// Add your customizations after calling base.OnModelCreating(builder);
}
}
最佳答案
此错误通常在您创建自己的 IdentityRole
时发生或者当您忘记注册 RoleManager
时.
如果您通过 class jakformulaireContext : IdentityDbContext<YourAppUser, YourIdentityRole>
自定义了上下文, 确保在任何地方使用 RoleManager<IdentityRole>
服务已替换为 RoleManager< YourIdentityRole>
此外,确保 RoleManager<YourIdentityRole>
已注册 。如果您不创建自己的 IdentityRole
版本, 只需调用 .AddRoleManager<RoleManager<IdentityRole>>()
services.AddIdentity<jakformulaireUser, IdentityRole>()
.AddRoleManager<RoleManager<IdentityRole>>() // make sure the roleManager has been registered .
.AddDefaultUI()
// other features ....
.AddEntityFrameworkStores<jakformulaireContext>()
关于c# - 使用 RoleManager 创建新角色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53782492/
我目前正在为 Cassandra 使用以下配置: authenticator: PasswordAuthenticator authorizer: org.apache.cassandra.aut
我创建了一个上下文(带有脚手架)和一个用户。我还设置了播放数据库(并创建了一个迁移)。这非常有效!我现在只想创建一个角色,然后将其分配给用户。 为此,我修改了我的 startup.cs 文件以便继续(
我正在尝试对一些依赖于 UserManager 和 RoleManager 的方法进行单元测试,但遇到了一些困难。 我应该模拟 UserManager 和 RoleManager 然后将其传递给 Ad
如何在非托管中访问 UserManager 和/或 RoleManger,asp.net-5控制台应用程序包? 最佳答案 Program.cs public class Program { p
Microsoft.AspNetCore.Identity.RoleManager未填充 Claims调用时属性 FindByIdAsync(string id) github link to met
我正在开发一个应托管在 Windows Azure 环境中的 WCF 服务,因此我想使用 RoleManager.WriteToLog 方法来记录事件。我发现了很多描述此类用法的文章,通常日期为 20
我目前正在尝试使用依赖于 UserManager 和 RoleManager 的 C# 进行测试。我 mock 了他们,但这没有帮助,另外我得到一个异常,说明模拟对象不能转换为 User 或 Role
我模拟了抽象类来测试类的具体方法,如下所示。 var mock = new Mock(); mock.CallBase = true; var ta = mock.Object; ta.Control
请帮忙,我不知道如何将加密的 ConnectionString 与 RoleManager 一起使用 在 ASP.NET 中 这是 Web.config 中的代码。
我正在 ASP.NET CORE 2.1 应用程序上设置用户角色。但是,当我尝试使用 RoleManager 时,它会出错。我得到的错误是: No service for type 'Microsof
我在我的 asp.net core 项目中编写用于向用户添加角色的代码 这是我的角色 Controller 。 public class RolesController : Controller {
我使用教程 here 将用户数据库的主键从字符串更改为整数,但我在初始化角色管理器时遇到困难。它曾经使用初始化 var roleManager = new RoleManager(new RoleSt
我一直在关注这篇关于为新的 ASP.NET Identity 系统创建自定义“存储提供程序”的帖子,到目前为止,它已被证明非常有用; Creating a custom MySQL Identity
自从我把我的 MVC 项目运行时,我总是遇到错误 此代码在我的 web.config 上文件。 这就是我的错误: 配置错误
我看到了这个问题。但答案对我不起作用。 我创建了一个空的 asp.net 网站。 .NET 4.5 我通过 Install-Package Microsoft.AspNet.Identity.Samp
我正在尝试将 RoleManager 像 UserManager 一样传递给我的 Controller ,但出现此错误: An unhandled exception occurred while p
我一直在使用此链接为我的数据库做种 Seeding Db with AspNet Core 现在播种时我也想访问 UserManager和 RoleManager . 但是,因为这是在配置方法中调用的
我需要为 ROLES 创建 CRUD 操作。 我收到以下错误: “无法解析‘Microsoft.AspNetCore.Identity.RoleManager` 类型的服务” 那么,我该如何注入(in
我以前用过这个,但我终究无法弄清楚哪里出了问题。 @using System.Data.Entity; @using Microsoft.AspNet.Identity; @using Microso
有没有人为 UserManager 和 RoleManager 想出一个成功的模拟解决方案?我整天都在用头撞墙。我想要做的就是模拟对象以使用内存集合而不是访问 Entity Framework 数据存
我是一名优秀的程序员,十分优秀!