Skip to content

Goal is provide alternate data access implementations (besides EF) for the ASP.NET Identity 2.0 framework.

License

Notifications You must be signed in to change notification settings

safigi/AltProvidersForAspNetIdentity2

 
 

Repository files navigation

AltProvidersForAspNetIdentity2

Goal is provide alternate data access implementations (besides EF) for the ASP.NET Identity 2.0 framework.

This is a dapper implementation. Id-s converted from guid to int.

for example, instead of this:

CREATE TABLE [dbo].[AspNetUsers]( [Id] varchar(max) NOT NULL,

CREATE TABLE [dbo].[AspNetUsers]( [Id] [int] IDENTITY(1,1) NOT NULL,

etc.

About

Goal is provide alternate data access implementations (besides EF) for the ASP.NET Identity 2.0 framework.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%