I am building a Web Forms application in Visual Studio 2013. I have chosen the ASP.NET 4.5 C# template. I want to make the ASP.NET Identity piece of my project to work with tables in an Oracle database instead of the default localDB. I have done the following
so far:
- I created a new connection string in Web.config that looks something like this:
<add name="MyDBName" connectionString="Data Source=MyDBName;Persist Security Info=True;User ID=xxx;Password=xxx;Unicode=True"
providerName="System.Data.OracleClient" />
- I created the tables used by ASP.NET Identity in my Oracle database. (AspNetUsers, AspNetUserClaims, AspNetUserRoles, AspNetUserLogins, AspNetRoles) I had to change some of the data types such as INT to NUMBER, NVARCHAR to VARCHAR2 and BOOL to CHAR(1)
so they can be valid in Oracle. I'm not sure if this is going to create a ...
Go to the complete details ...