How to Use ASP.NET Identity with your own Custom Table

user2214731

I have a very simple table that has UserID as int Password as text and Roles as text(comma separated). Can i customize ASP.NET Identity structure to use it with my table?

trailmax

Yes, you can make Identity work with your structure. You'll have to implement IPasswordValidator to take whatever hashing (I hope it is hashed) is used for your password. Also you'll have to implement IUserStore to point to your table. And IUserRoleStore also have to be implemented to take roles from your CSV list.

Here is an overview of the architecture: http://www.asp.net/identity/overview/extensibility/overview-of-custom-storage-providers-for-aspnet-identity

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to Use ASP.NET Identity with your own Custom Table

From Dev

ASP.NET Identity UserName (how to add your own verification)?

From Dev

How to use my own database in ASP.NET Identity (WebForms)

From Dev

How to add custom table in ASP.NET IDENTITY?

From Dev

ASP.Net Identity - Use custom Schema

From Dev

How do I setup ASP.NET Identity to use my own connection string?

From Dev

Asp.net Identity 2 custom user and custom table name

From Dev

Many to many relationship with ASP.NET Identity Table and Custom Table

From Dev

Many to many relationship with ASP.NET Identity Table and Custom Table

From Dev

How to use your own custom classifier with sklearn's adaboost method?

From Dev

How to implement your own error view in ASP.NET MVC

From Dev

Using custom properties for AspNetUsers table in ASP.NET Identity

From Dev

How can I use my own custom styled text boxes in the ASP.NET login control?

From Dev

How to use TPH (Table Per Hierarchy) with ASP.NET Identity 2

From Dev

Login and register using Asp.net Identity C# MVC Need to add our own table too

From Dev

Creating a Custom Implementation using Guid and Custom Table names with Asp.net Identity 1.1 Alpha

From Dev

how to use asp.net Identity 2.0 with old database

From Dev

How to use ASP.NET Identity 3.0 without Entity Framework

From Dev

how to use asp.net Identity 2.0 with old database

From Dev

how to Use Asp.net Identity with DataBase first approach

From Dev

How can I connect the ASP.NET Identity database with my own database?

From Dev

How to use your own methods on arraylist?

From Dev

How to use Autofac to initialize your own components?

From Dev

ASP.NET Identity - Steps for custom authentication

From Dev

Asp.NET Identity Custom SignInManager

From Dev

Asp .Net Identity - Custom IUserStore FindByNameAsync method

From Dev

Custom Implementation ASP.NET Identity

From Dev

ASP.NET Identity - Steps for custom authentication

From Dev

Adding custom columns to ASP.NET Identity

Related Related

  1. 1

    How to Use ASP.NET Identity with your own Custom Table

  2. 2

    ASP.NET Identity UserName (how to add your own verification)?

  3. 3

    How to use my own database in ASP.NET Identity (WebForms)

  4. 4

    How to add custom table in ASP.NET IDENTITY?

  5. 5

    ASP.Net Identity - Use custom Schema

  6. 6

    How do I setup ASP.NET Identity to use my own connection string?

  7. 7

    Asp.net Identity 2 custom user and custom table name

  8. 8

    Many to many relationship with ASP.NET Identity Table and Custom Table

  9. 9

    Many to many relationship with ASP.NET Identity Table and Custom Table

  10. 10

    How to use your own custom classifier with sklearn's adaboost method?

  11. 11

    How to implement your own error view in ASP.NET MVC

  12. 12

    Using custom properties for AspNetUsers table in ASP.NET Identity

  13. 13

    How can I use my own custom styled text boxes in the ASP.NET login control?

  14. 14

    How to use TPH (Table Per Hierarchy) with ASP.NET Identity 2

  15. 15

    Login and register using Asp.net Identity C# MVC Need to add our own table too

  16. 16

    Creating a Custom Implementation using Guid and Custom Table names with Asp.net Identity 1.1 Alpha

  17. 17

    how to use asp.net Identity 2.0 with old database

  18. 18

    How to use ASP.NET Identity 3.0 without Entity Framework

  19. 19

    how to use asp.net Identity 2.0 with old database

  20. 20

    how to Use Asp.net Identity with DataBase first approach

  21. 21

    How can I connect the ASP.NET Identity database with my own database?

  22. 22

    How to use your own methods on arraylist?

  23. 23

    How to use Autofac to initialize your own components?

  24. 24

    ASP.NET Identity - Steps for custom authentication

  25. 25

    Asp.NET Identity Custom SignInManager

  26. 26

    Asp .Net Identity - Custom IUserStore FindByNameAsync method

  27. 27

    Custom Implementation ASP.NET Identity

  28. 28

    ASP.NET Identity - Steps for custom authentication

  29. 29

    Adding custom columns to ASP.NET Identity

HotTag

Archive