您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關怎么在.net core中使用orm操作mysql數據庫,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
操作方法如下:
新建web項目,然后引用MySql相關orm程序集:
然后在mysql中創建相應數據庫及數據表:
在項目中添加數據表實體:
public class t_test { public int id { get; set; } public string name { get; set; } }
然后添加數據庫上下文:
/// <summary> /// 數據庫上下文 /// </summary> public class DataContext : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { //配置Sqlserver連接字符串 optionsBuilder.UseMySql("Server=127.0.0.1;Database=test; User=root;Password=123456;"); } //添加表實體 public DbSet<t_test> t_test { get; set; } }
在Home控制器Index中添加如下腳本:
public IActionResult Index() { DataContext context = new DataContext(); string name = context.t_test.Find(1).name; return Content(name); }
運行項目,查看輸出結果:
可以看到,結果輸出了數據庫中相應的數據,至此,.net core中操作mysql數據庫功能已實現。
關于怎么在.net core中使用orm操作mysql數據庫就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。