Second Class Rank Requirements: Since joining Scouts BSA, participate in five separate troop/patrol activities, at least three of which must be held outdoors. Of the outdoor activities, at least two must include overnight camping. These activities do not include troop or patrol meetings. On camp...
I have the context declared as a trainsient and the class.复制 services.AddTransient<SeedUsers>(); services.AddTransient<WarehouseDBContext>(); So why then am I getting the error. It happens every time on the line above await userStore.CreateAsync(user);?
public class BidController : Controller { public readonly ApplicationDbContext _context; public readonly UserManager<IdentityUser> _userManager; public BidController(ApplicationDbContext context, UserManager<IdentityUser> userManager) { _context = context; _userManager = userManager; } My Actionresults...