標籤:style blog http color io 使用 檔案 資料 sp
Entity Framework 4.1支援代碼優先(code first)編程模式:即可以先建立模型類,然後通過配置在EF4.1下動態產生資料庫。
下面示範兩種情形:
1、代碼優先模式下,asp.net mvc資料訪問
2、傳統模式,先建立資料庫和表,配置連接字串,再產生模型
第一種情況的步驟:
(1)使用空模板,建立ASP.NET MVC3.0(或4.0)項目,假定項目名:MVC_Student
注意:建立完項目後,項目會自動引用EF4.1
(2)在Model檔案夾下,建立資料庫上下文類:StuDBContext
public class StuDBContext:DbContext
{
public StuDBContext()
: base("DataConn")
{
}
public DbSet<StudentInfo> Students { get; set; }
}
(3)建立領域模型:StudentInfo
public class StudentInfo
{
public int ID { get; set; }
public string StuNO { get; set; }
public string StuName { get; set; }
public string StuPhoto { get; set; }
public DateTime StuBirthday { get; set; }
public string StuAddress { get; set; }
}
(4)在web.config中配置連接字串(也可以不配置,EF自動檢查並使用SQL SERVER EXPRESS,此處我們指定伺服器和資料庫)
<connectionStrings>
<!--<add name="StuDBContext" connectionString="server=(local);database=MyStudent;uid=(登入賬戶);pwd=(登入密碼)" providerName="System.Data.SqlClient"/>-->
<add name="DataConn" connectionString="server=(local);database=MyStudent;uid=(登入賬戶);pwd=(登入密碼)" providerName="System.Data.SqlClient"/>
</connectionStrings>
(5)產生項目,為第(6)步服務
(6)右擊“Controllers"檔案夾,選擇”添加控制器“,
單擊確定後,會在Controllers檔案夾下產生一個StudentController類,而且在Views檔案夾下產生Student子檔案夾,其中包含5個.cshtml檔案,
(8)最後,單擊”調試“菜單,選擇”啟動調試“
(9)可以單擊”Create New"超連結,向資料庫添加一條記錄
此時可以開啟資料庫伺服器,會發現自動建立了MyStudent的資料庫(對應連接字串中的資料庫)和StudentInfoes表(是模型類名稱的複數形式,表中的各欄位分別對應模型類中的屬性,此處要特別注意:ID屬性會自動對應表中的自增長主鍵列。
第二種方法和第一種類似,建立好資料庫和實體類之後就直接可以進行資料庫的調用!
ASP.NET MVC+Entity Framework 訪問資料庫