ASP.NET MVC- EF返回串連池用ADO.NET方式訪問資料庫

來源:互聯網
上載者:User

標籤:style   blog   io   color   ar   sp   資料   div   on   

  用習慣了ADO.NET的方式去訪問資料庫,雖然ADO.NET寫的代碼沒有EF簡潔,可是也並不麻煩。而且EF在進行多表查詢的那種方式是,EF需要先去資料庫裡定義外鍵,再進去一次代碼產生,然後才能用INCLUDE方法進行多表關聯查詢。我不太喜歡那樣,還不如老老實實寫做SQL語句。

 

  所以ADO.NET 不能完成不用掉。那麼怎麼將EF和ADO.NET結合。

  其實很簡單,只要將EF的串連池返回成ADO.NET的SQLCONNECTION。然後就可以用ADO.NET的方式來寫了。

 

        protected void Button4_Click(object sender, EventArgs e)        {            var context = new CcxDemoEntities();            SqlConnection conn = context.Database.Connection as SqlConnection;            conn.Open();            var cmd = (conn).CreateCommand();            cmd.CommandText = "select * from gBook_Message";            SqlDataReader dr = cmd.ExecuteReader();            DataTable dt = new DataTable();            dt.Load(dr);        }        protected void Button5_Click(object sender, EventArgs e)        {            var context = new CcxDemoEntities();            SqlConnection conn = context.Database.Connection as SqlConnection;            conn.Open();            var cmd = (conn).CreateCommand();            cmd.CommandText = "pro_Message";            cmd.CommandType = CommandType.StoredProcedure;            DataTable dt = new DataTable();            SqlDataReader dr = cmd.ExecuteReader();            dt.Load(dr);        }

 

ASP.NET MVC- EF返回串連池用ADO.NET方式訪問資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.