The ASP.
How can I create a custom authorize claim in MVC Core 2.0 (using AspNetCore.identity) to verify a custom user boolean …
asp.net-core asp.net-core-mvc asp.net-identity claims-based-identityI'm trying to update a user. AppUserManager appUserManager = HttpContext.GetOwinContext().GetUserManager<AppUserManager>(); AppUser member = await appUserManager.FindByIdAsync(User.…
c# asp.net transactions asp.net-identity usermanagerI'm trying to confirm an account but I'm getting "invalid token." error. Here's what I'm trying: var code = await UserManager.…
asp.net-mvc-5 asp.net-identity-2 asp.net-identityI'm developing a Multi-tenant solution and I want to use the latest ASP.NET Identity framework specifically the Entity Framework …
multi-tenant entity-framework-6 asp.net-identityI've a solution in Visual Studio 'TourManagement' which contains 2 projects of .Net core. One is IDP using Identity Server 4, second …
asp.net-core asp.net-identity postman identityserver4 openid-connectI'm using ASP.NET Identity as membership system in my project. After creating a user I want to check the …
c# asp.net-mvc identity membership-provider asp.net-identityI currently started a new project in Visual Studio 2013 with ASP.NET MVC5 using Entity Framework Model-First. With entity is …
c# entity-framework connection-string asp.net-identity asp.net-mvc-5.1I am new to .NET, MVC & Identity Framework. I noticed the identity framework allows for securing individual controller actions …
.net asp.net-mvc asp.net-identity user-permissionsI have a database-first EDMX model in a separate library (e.g. Common.Feedback.Data), that includes the AspNetUser table …
c# asp.net-mvc entity-framework-6 asp.net-identity ef-database-firstTrying to change the default minimum password length to 4 characters. I know, 4!!! Ridiculous, right! Not my call. Anyway, I've changed …
.net simplemembership asp.net-mvc-5 asp.net-identity