Top "Asp.net-identity" questions

The ASP.

how to implement ASP.NET Identity to an empty MVC project

I create a new empty MVC project and I want to add identity to it. Now I do not know …

asp.net-mvc asp.net-identity
No MediaTypeFormatter is available to read an object of type 'Advertisement' in asp.net web api

I have a class that name is Advertisement: public class Advertisement { public string Title { get; set; } public string Desc { get; …

c# asp.net asp.net-web-api2 asp.net-identity
Get list of users with assigned roles in asp.net identity 2.0

I have a drop down list box which lists roles. I want to get the list of users having that …

asp.net asp.net-mvc asp.net-mvc-4 asp.net-identity asp.net-identity-2
How to create a user and get the newly created ID with ASP.NET Identity

I am new to the ASP.NET Identity framework and am trying to do some things that I used to …

c# asp.net asp.net-mvc-5 asp.net-identity
What is the advantage of using async with MVC5?

What is the difference between: public ActionResult Login(LoginViewModel model, string returnUrl) { if (ModelState.IsValid) { IdentityResult result = IdentityManager.Authentication.CheckPasswordAndSignIn(…

asp.net-mvc task-parallel-library async-await asp.net-mvc-5 asp.net-identity
ASP.NET core, change default redirect for unauthorized

I am attempting to redirect to a different login url in ASP.NET MVC6 My account controller login method has …

c# asp.net asp.net-core asp.net-identity asp.net-core-mvc
Configure Microsoft.AspNet.Identity to allow email address as username

I'm in the process of creating a new application and started out using EF6-rc1, Microsoft.AspNet.Identity.Core 1.0.0-rc1, …

asp.net asp.net-identity
No owin.Environment item was found in the context

Microsoft recently introduced new ASP.NET Identity - replacement for old (Simple)Membership. Unfortunately, I can't use this new membership …

asp.net .net owin katana asp.net-identity
ASP.NET Identity - Multiple object sets per type are not supported

I got an error using ASP.NET Identity in my app. Multiple object sets per type are not supported. The …

c# asp.net asp.net-mvc entity-framework asp.net-identity
ASP.NET MVC 5 how to delete a user and its related data in Identity 2.0

I'm following this article to delete a user in Identity 2.0 http://www.asp.net/mvc/tutorials/mvc-5/introduction/examining-the-details-and-delete-methods However, …

asp.net-mvc asp.net-mvc-5 asp.net-identity