Я использую asp.net mvc core 2.1 версии, и я получаю эти две ошибки при добавлении свойств в классе ApplicationUser, и я получаю сообщение об ошибке на этом фрагменте кода:
var userIdentity = await manager.CreateIdentityAsync(this,DefaultAuthenticationTypes.ApplicationCookie);
Я пытаюсьисправьте это за последние 3 дня(вам не хватает директивы using или ссылки на сборку?)
"Имя 'DefaultAuthenticationTypes' не существует в текущем контексте"
Мой класс указан ниже
public class ApplicationUser:IdentityUser
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
var userIdentity = await manager.CreateIdentityAsync(this,DefaultAuthenticationTypes.ApplicationCookie);
return userIdentity;
}
public string FullName { set; get; }
public string MobileNumber { get; set; }
public int CountryId { get; set; }
public int StateId { get; set; }
public int CityId { set; get; }
public string Address { get; set; }
public string ShippingAddress { get; set; }
}