AspnetIdentitySample
AspnetIdentitySample copied to clipboard
Hello, would it be possible to add an example to support Client Credentials? There are quite a few examples of obtaining the Resource Owner Grant/Token, but none explain the ability...
In the newest Identity alphas from the last week or so have included Email in the IdentityUser along with several email based methods like FindByEmailAysnc. I would love to see...
Hi Great project! But how do you decouple dependency on Microsoft.AspNet.Identity.\* if your domain models are in a separate assembly, which is used by many projects? I would not want...
Hi just implemented the example and get the following error in Details page of RolesAdmin: CS1061: 'Microsoft.AspNet.Identity.EntityFramework.IdentityUserRole' does not contain a definition for 'Users' and no extension method 'Users' accepting...
It is nice to have adapted this sample to 2.0 alpha but it would be better to have it using now a key different from string, and an int key...
Hi, I am having a bit of trouble with this. I want allow the user to customize their profile with certain properties. I want to create properties (i.e. Item A...
Hello, I want to Show all Users on a Page. I am storing Profile info in a Separate table called UserProfileInfo. All is working ok. In a foreach loop when...
hi Pranav After doing an update of the all Nuget packages including to AspNet.Identity.Core v2 ... In IdentityExtensions\MyClaimsIdentityFactory.cs Error: The type 'TUser' must be a reference type in order to...
Hello, I am tying to bind a dropdownlist with all roles in asp.net web forms app (VS 2013)...with following bind method... ``` public IQueryable BindRoles() { var roles = roleManager.Roles;...
In the ClaimsIdentityFactoryController, Index method, there is no exception handling for an invalid userid/password. I tried to use the same implementation than in the accounts controller, but the Return View(model)...