PetaPoco與MySQL

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   color   os   使用   sp   

隨便寫寫的,PetaPoco與MySQL一起使用,在一個工控項目中充分使用節省不少開發時間,經曆大半年的努力的項目接近完成,客戶不認帳,開始需求合約就是個敗筆,技術還是僅能解決技術問題而已!

上代碼!

 

查詢業務

public class BaseViewModel    {        #region Create DataBase, if not exit        private Database _db;        private Database Db        {            get            {                if (_db == null)                    _db = new Database("ConnectionStringMySQL");                return _db;            }        }        #endregion        #region Common CURD        public T Get<T>(string id)        {            return Db.SingleOrDefault<T>(id);        }        public List<T> GetAll<T>()        {            var className = typeof(T).ToString();            var arg = className.Substring(                className.LastIndexOf(‘.‘) + 1,                className.Length - className.LastIndexOf(‘.‘) - 1);            return Db.Fetch<T>(string.Format("SELECT * from {0}; ", arg));        }        public void Save(object obj)        {            Db.Save(obj);        }        public int Update(object obj)        {            return Db.Update(obj);        }        public int Delete(object obj)        {            return Db.Delete(obj);        }        #endregion    } 

連接字串

<add name="ConnectionStringMySQL"              connectionString="Server=localhost;Database=AutoApp;Uid=root;Pwd=root;charset=utf8;pooling=true;"               providerName="MySql.Data.MySqlClient"/>

 

別忘了要裝 mysql-connector C# 的,到官網去下。

 

沒看到添加附件的? 需要Demo代碼留下郵箱吧。

 

PetaPoco與MySQL

相關文章

聯繫我們

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