C# 數(shù)據(jù)庫(kù)的位置
創(chuàng)建的數(shù)據(jù)庫(kù)位于哪個(gè)位置?我們永遠(yuǎn)不會(huì)指定文件名或文件夾位置——好奇怪!在Visual Studio 2017中通過(guò)Server Explorer可以看到它。進(jìn)入Tools丨Connect to Database。Entity Framework將創(chuàng)建一個(gè)數(shù)據(jù)庫(kù),放在它在計(jì)算機(jī)上找到的第一個(gè)本地SQL Server實(shí)例中。
如果計(jì)算機(jī)里以前從來(lái)沒(méi)有任何數(shù)據(jù)庫(kù),Visual Studio 2017就會(huì)自動(dòng)創(chuàng)建一個(gè)本地SQL Server實(shí)例(localdb)\MSSQLLocalDB。要連接到該數(shù)據(jù)庫(kù),在 Servername 字段中輸入(localdb)\MSSQLLocalDB,如圖所示。
假設(shè)在例子中輸入的名字與本章所示完全相同,則包含數(shù)據(jù)的數(shù)據(jù)庫(kù)稱(chēng)為BeginningCSharp7_23J_CodeFirstDatabase.BookContext.花點(diǎn)時(shí)間連接后,它會(huì)出現(xiàn)在 Select or enter a database name 字段中。
現(xiàn)在可以按下OK鍵,數(shù)據(jù)庫(kù)將出現(xiàn)在Visual Studio 2017的Server Explorer中的Data Connections窗口中。
現(xiàn)在就可以直接探索數(shù)據(jù)庫(kù)。例如,可以右擊Books表,并選擇Show Table Data,查看自己輸入的數(shù)。
點(diǎn)擊加載更多評(píng)論>>