中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用DataBase?First模式實現數據庫的增刪改查

發布時間:2022-03-09 09:12:37 來源:億速云 閱讀:216 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“怎么使用DataBase First模式實現數據庫的增刪改查”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么使用DataBase First模式實現數據庫的增刪改查”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

一、新增數據

新增一個Student,代碼如下:

static void Add()
{
     using (StudentSystemEntities dbContext = new StudentSystemEntities())
      {
          // 定義Student對象
          Student stu = new Student()
          {
               StudentName = "花千骨",
               Sex = "女",
               Age = 3422,
               Major = "舞蹈專業",
               Email = "2345678911@qq.com"
           };
           // 將EF執行的SQL語句輸出到控制臺
           dbContext.Database.Log += p => Console.WriteLine(p);
           // 只是內存上面的操作
           dbContext.Students.Add(stu);
           // 保存的數據庫
           dbContext.SaveChanges();
           Console.WriteLine("保存成功");
      }
}

在Main()方法里面調用Add()方法,結果:

怎么使用DataBase?First模式實現數據庫的增刪改查

查看數據庫結果:

怎么使用DataBase?First模式實現數據庫的增刪改查

從上面的兩個截圖中可以看出數據新增成功。

二、查詢數據

查詢StudentName是唐僧的學生信息并輸出:

static void Query()
{
       using (StudentSystemEntities dbContext = new StudentSystemEntities())
       {
            List<Student> list = dbContext.Students.Where(p => p.StudentName == "唐僧").ToList<Student>();
            list.ForEach(p =>
            {
                    Console.WriteLine("姓名:"+p.StudentName+",年齡:"+p.Age+",專業:"+p.Major+",郵箱:"+p.Email);
             });
        }
}

在Main()方法里面調用Query(),結果:

怎么使用DataBase?First模式實現數據庫的增刪改查

三、修改數據

修改StudentName為花千骨的學生年齡:

static void Edit()
{
     using (StudentSystemEntities dbContext = new StudentSystemEntities())
     {
          // 將EF執行的SQL語句輸出到控制臺
          dbContext.Database.Log += p => Console.WriteLine(p);
          // 查詢要修改的數據,FirstOrDefault表示查詢到的第一條數據
          Student student = dbContext.Students.Where(p => p.StudentName == "花千骨").FirstOrDefault();
          // 保存修改
          student.Age = 234;
          dbContext.SaveChanges();
          Console.WriteLine("修改成功");
      }
}

結果:

怎么使用DataBase?First模式實現數據庫的增刪改查

查看數據庫數據:

怎么使用DataBase?First模式實現數據庫的增刪改查

四、刪除數據

刪除新添加的數據:

static void Delete()
{
      using (StudentSystemEntities dbContext = new StudentSystemEntities())
      {
           // 將EF執行的SQL語句輸出到控制臺
           dbContext.Database.Log += p => Console.WriteLine(p);
           // 先查詢然后在刪除
           Student stu = new Student()
           {
                 StudentID=18
           };
            // 附加到集合中
            dbContext.Students.Attach(stu);
            // 刪除的SQL語句是根據stu的StudentID生成的
            dbContext.Students.Remove(stu);
            // 保存
            dbContext.SaveChanges();
            Console.WriteLine("刪除成功");
       }
}

結果:

怎么使用DataBase?First模式實現數據庫的增刪改查

查看數據庫:

怎么使用DataBase?First模式實現數據庫的增刪改查

數據刪除成功。

讀到這里,這篇“怎么使用DataBase First模式實現數據庫的增刪改查”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南雄市| 民丰县| 林州市| 来宾市| 龙川县| 吉首市| 马鞍山市| 壶关县| 墨竹工卡县| 开原市| 镇安县| 凤台县| 玉树县| 潜山县| 清远市| 墨竹工卡县| 厦门市| 巧家县| 佛坪县| 普安县| 比如县| 湘西| 密云县| 浦江县| 淮南市| 新昌县| 南陵县| 涟水县| 香河县| 同德县| 林周县| 桓台县| 霍州市| 天等县| 和平区| 怀化市| 迁西县| 永顺县| 类乌齐县| 盐城市| 那坡县|