-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from arichika/develop
public beta
- Loading branch information
Showing
13 changed files
with
81 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,39 @@ | ||
AspNet.Identity.Oracle | ||
====================== | ||
|
||
AspNet.Identity.Oracle for ASP.NET Identity 2.0 with ODP.NET | ||
AspNet.Identity.Oracle for ASP.NET Identity 2.0 with ODP.NET | ||
forked from AspNet.Identity.MySQL provided at codeplex. | ||
|
||
https://aspnet.codeplex.com/SourceControl/latest#Samples/Identity/AspNet.Identity.MySQL/AspNet.Identity.MySQL.csproj | ||
|
||
How To Use | ||
========== | ||
(from ReadMe.txt) | ||
|
||
This is an example to implement a OracleDatabase store for ASP.NET Identity 2.0 | ||
|
||
Steps to run project | ||
|
||
- Open project in VS with Update 2 or later installed | ||
- Build project to restore packages and build project | ||
- In the solution, add a new one ASP.NET project with MVC and Individual Authentication | ||
- Uninstall Microsoft.AspNet.Identity.EntityFramework package from the web application | ||
- Update connection string to use the OracleDatabase database as needed | ||
- In the IdentityModel.cs, let ApplicationUser class extend from Identity user in AspNet.Identity.Oracle | ||
- ApplicationDbContext extend from OracleDatabase and the contructor take a single parameter with the connectionstring name | ||
- In the ApplicationManager.Create method, replace instantiating UserManager as shown below | ||
|
||
var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context.Get<ApplicationDbContext>() as OracleDatabase)); | ||
|
||
See Also | ||
======== | ||
|
||
AspNet.Identity.MySQL(CodePlex) | ||
https://aspnet.codeplex.com/SourceControl/latest#Samples/Identity/AspNet.Identity.MySQL/AspNet.Identity.MySQL.csproj | ||
|
||
Implementing a Custom MySQL ASP.NET Identity Storage Provider | ||
http://www.asp.net/identity/overview/extensibility/implementing-a-custom-mysql-aspnet-identity-storage-provider | ||
|
||
Announcing RTM of ASP.NET Identity 2.0.0 | ||
http://blogs.msdn.com/b/webdev/archive/2014/03/20/test-announcing-rtm-of-asp-net-identity-2-0-0.aspx | ||
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters