amd
amd

Reputation: 21452

Using the old aspnet membership with aspnet vNext

UPDATE November 20, 2015

How can I authenticate against a database that have the users stored using the Old Membership Provider ? (the aspnet_* tables) Knowing that this database is used by other applications, so I don't have the option to migrate (or change) the database ?

For whom looking for migration look at Maxime Rouiller's answer

Old Question

Can I use the aspnet Membership with aspnet vNext ?,

Upvotes: 3

Views: 1284

Answers (1)

Maxime Rouiller
Maxime Rouiller

Reputation: 13699

No. The old membership was dependent on the web.config being present and also was heavily dependent on the System.Web lifetime.

You are looking for a migration from your old membership to the new Identity 3.

The database should be easily portable. If you are planning to have it hosted on Linux, I would go as far as remove the dnx451 dependency altogether and just keep dnxcore50.

Tutorials:

Upvotes: 5

Related Questions