Reputation: 1209
I
m trying to access default membership database. Because i have added 3 more table. I
m doing this by using entity framework. But it isn`t displaying database name. I want a single database in my project.
Upvotes: 0
Views: 1034
Reputation: 15365
Are you connecting to the ApplicationServices database in your project's App_Data folder?
Or did you create the ApplicationServices database on a genuine SQL Server instance?
In any event:
Upvotes: 1
Reputation: 3979
I'm not sure I understood the question completely ... But Install SQL SERVER MANAGEMENT STUDIO . The best official programm for microsoft to connect ,show,edit and update your databases ;-)
You can through this program have a better visibilitée installed bases. Otherwise you can simply querying with the console manually using the prefix "USE [aspnet_nameTable] ..."
sample:
USE [dbo].[aspnet_users]
CREATE DATABASE blablobli......
OR you can attach the local database in SQL MANAGEMENT STUDIO
Upvotes: 0
Reputation: 9448
After you run your project for first time, just go to the App_Data
Folder and there you can see the database file.
Remember to do the following before it:
You can access by double clicking it..
Upvotes: 0