I try to make a simple web application. There will be very few users(one or two). No need to make complicated membership stuff. I need just basic login process. I use Visual Studio 2013
I made some research on the internet and found something about ASP.NET Identity. However i could not found anything about how to install Identity tables to my own mssql database.
I used ASP.NET membership before and it was easy to install tables by using aspnet_regsql.exe and adding some codes to web.config
But now i am really confused with Identity stuff. It uses a default database to store users. But in my server there will be my sql database that stores both my datas and user datas.
How can i combine these two databases into one? How can I install Identity tables to my own database and configure my Project to use it?