Я собираюсь аутентифицировать пользователя с помощью .net-core версии 2. после регистрации «SqlNullValueException: Data is Null. Этот метод или свойство нельзя вызывать для значений Null». ошибка появится в методе signInManager.
Я проверил обнуляемые данные и необходимые данные в моей модели и базе данных.
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task < IActionResult > Login(LoginViewModel model, string returnUrl = null) {
ViewData["ReturnUrl"] = returnUrl;
if (ModelState.IsValid) {
var result = await signInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, false);
var user = new ApplicationUser {
Email = model.Email
};
// ...
файл startup.cs
IConfigurationRoot configurationRoot;
public Startup(IHostingEnvironment env) {
configurationRoot = new ConfigurationBuilder().SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json").Build();
}
public void ConfigureServices(IServiceCollection services) {
services.AddIdentity < ApplicationUser, IdentityRole > ()
.AddEntityFrameworkStores < ApplicationDbContext > ()
.AddDefaultTokenProviders();
services.AddTransient < ApplicationDbContext > ();
services.AddTransient < IEmailSender, AuthMessageServices > ();
services.AddAuthentication();
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env) {
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
app.UseBrowserLink();
} else {
app.UseExceptionHandler("/Error");
}
app.UseAuthentication();
app.UseStaticFiles();
app.UseMvc(routes => {
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}