Code Monkey home page Code Monkey logo

aspnet.identity.shaolinq's Introduction

AspNet.Identity.Shaolinq

A Shaolinq provider for AspNet Identity.

Available on NuGet.

Usage

Define your Identity User class and matching Shaolinq DataAccessObjects (optional)

If you are happy with the default set of user fields, you can skip this step and use the supplied DbUser, DbUserClaim, DbUserLogin, DbUserRole and ShaolinqIdentityUser classes.

Alternatively:

  • Create Shaolinq DataAccessObject classes derived from

    • IShaolinqIdentityDbUser
    • IShaolinqIdentityDbUserClaim
    • IShaolinqIdentityDbUserLogin
    • IShaolinqIdentityDbUserRole
  • Create an Identity User class derived from ShaolinqIdentityUser

    • Override the PopulateDbUser and PopulateFromDbUser methods to map your additional fields between Shaolinq and Identity User classes

Define your Shaolinq DataAccessModel

Create a Shaolinq DataAccessModel class that implements IShaolinqIdentityDataAccessModel.

(replacing generic type parameters with your types if applicable)

[DataAccessModel]
public abstract class MyDataAccessModel :
	DataAccessModel,
	IShaolinqIdentityDataAccessModel<Guid, DbUser, DbUserLogin, DbUserClaim, DbUserRole>
{
	[DataAccessObjects]
	public abstract DataAccessObjects<DbUser> Users { get; }
	[DataAccessObjects]
	public abstract DataAccessObjects<DbUserLogin> UserLogins { get; }
	[DataAccessObjects]
	public abstract DataAccessObjects<DbUserClaim> UserClaims { get; }
	[DataAccessObjects]
	public abstract DataAccessObjects<DbUserRole> UserRoles { get; }
}

Instantiate a UserManager

(replacing generic type parameters with your types if applicable)

var dataModel = DataAccessModel.BuildDataAccessModel<MyDataAccessModel>();
var userStore = new ShaolinqIdentityUserStore<
                      ShaolinqIdentityUser<Guid>,
                      MyDataAccessModel,
                      Guid,
                      DbUser,
                      DbUserLogin,
                      DbUserClaim,
                      DbUserRole>(dataModel)
var userManager = new UserManager<ShaolinqIdentityUser<Guid>, Guid>();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.