ASP.NET MVC+Entity Framework 訪問資料庫

來源:互聯網
上載者:User

標籤: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 訪問資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.