2017年10月19日 星期四

dapper 連接資料庫

連接資料庫有ado.net,dapper,Entity Framework

Imports System.Transactions //可以加快速度


1.開啟NuGet管理視窗下載Dapper


C#
顯示在gridview
protected void Page_Load(object sender, EventArgs e)
        {
            GridView1.DataSource = ReadAll();
            GridView1.DataBind();
        }
        public class conference
        {
           
            public 資料庫欄位型別 資料庫欄位名稱 { get; set; }

            //出來的資料也只有定義在類別(這裡)的資料
        }
        public List<con> ReadAll()
        {
            using (IDbConnection db = new SqlConnection(ConfigurationManager.ConnectionStrings["xxx"].ConnectionString))
            {
                return db.Query<con>
                ("Select * From 資料庫 m" Where xxx=@xxx", 
                                        new { xxx = 1 }).ToList();
            }
        }

沒有留言:

張貼留言