DBLinq 之 Linq TO Mysql

來源:互聯網
上載者:User

去年開始一直就使用的是linq,因為方便就不想換了..

最近做網站需要往mysql裡面插入資料,但vs2008內建的linq也不支援mysql.

在網上找了些資料,終於找到了個支援mysql的linq工具,就是DBLinq.把方法帖上來以便以後使用.

 

一、工具:
Dblinq ;
MySQL 5.0以上,編程主機需要安裝;
VS2008

二、產生DataContext cs檔案
DbMetal.exe -provider=MySql -database:MyDatebase -server:you host computer -user:mysql user -password:you pwd -namespace:mysqllinq -code:mysqllinq.cs -sprocs
//注,名稱空間是mysqllinq,-sprocs一定要

三、將檔案DataContext cs放到專案檔中
注意:cs檔案放在項目的首層,比如App_Code中,或者內庫中

using DbLinq.Linq;
using DbLinq.Linq.Mapping;
(如果不是放在App_Code中,在此添加引用)

四、在VS 2008中建立類項目DALMySQL,並添加引用

DbLinq.dll;
DbLinq.MySql.dll;
MySql.Data.dll;
//上面三個在DbLinq-0.18\build中可以找到。
System.Data.Linq.dll;
//在C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Data.Linq.dll
//這是一要引用!!!
五、添加Web_App項目,添加對項目DALMySQL的引用

六、在aspx.cs頁面中添加引用:

using MySql.Data;
using MySql.Data.MySqlClient;
using mysqllinq;//DataContext cs檔案的名字空間

//省略
string connStr = @"server=localhost;database=test;user=root;pwd=ikmb;port=3306";

            MySqlConnection conn = new MySqlConnection(connStr);
            Test t = new Test(conn);
            var data = from f in t.Users select f;
            GridView1.DataSource = data;
            GridView1.DataBind();

 

 最後給個DbLinq下載

相關文章

聯繫我們

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