Entity Framework之DB First方式

来源:http://www.cnblogs.com/godbell/archive/2017/07/23/7224187.html
-Advertisement-
Play Games

EF(Entity Framework的簡稱,下同)有三種方式,分別是:DataBase First、 Model First和Code First。 下麵是Db First的方式: 1. 資料庫庫中存在兩個表,一個是專業表,一個學生表,一個學生只能屬於一個專業: 其中T_Major是專業表,T_S ...


EF(Entity Framework的簡稱,下同)有三種方式,分別是:DataBase First、 Model First和Code First。

下麵是Db First的方式:

1. 資料庫庫中存在兩個表,一個是專業表,一個學生表,一個學生只能屬於一個專業:

 

其中T_Major是專業表,T_Student是學生表,StudentId是學號,MajorId是專業Id,T_Major與T_Student是一對多的關係。

2. 項目中添加資料庫實體模型

 

 

因為之前沒有配置過資料庫連接,所以點擊“新建庫連接”,如果之前配置過資料庫連接,可以直接從下拉列表中選擇或者新建

 

 

 

選擇需要生成的表/存儲過程等

 

 

點擊“完成”

 

 

 

這裡會彈出如下圖的視窗,然後選擇確定(如果再彈出,也選擇確定),如果不小心點擊了取消,可以在模型設計界面Ctrl + S(保存的快捷鍵),或如下圖的操作,然後會彈出視窗,一直確定就行。 

 

 

這裡是使用MVC,所以添加一個控制器來測試(這裡為了快速生成讀寫的控制器方法,選擇“包含讀/寫操作的MVC5控制器”)

 

 

 

生成代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Zhong.Web.Controllers
{
    public class StudentController : Controller
    {
        // GET: Student
        public ActionResult Index()
        {
            return View();
        }

        // GET: Student/Details/5
        public ActionResult Details(int id)
        {
            return View();
        }

        // GET: Student/Create
        public ActionResult Create()
        {
            return View();
        }

        // POST: Student/Create
        [HttpPost]
        public ActionResult Create(FormCollection collection)
        {
            try
            {
                // TODO: Add insert logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        // GET: Student/Edit/5
        public ActionResult Edit(int id)
        {
            return View();
        }

        // POST: Student/Edit/5
        [HttpPost]
        public ActionResult Edit(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add update logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        // GET: Student/Delete/5
        public ActionResult Delete(int id)
        {
            return View();
        }

        // POST: Student/Delete/5
        [HttpPost]
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add delete logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
    }
}
View Code

 

同樣的方法添加一個Major控制器

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Zhong.Web.Controllers
{
    public class MajorController : Controller
    {
        // GET: Major
        public ActionResult Index()
        {
            return View();
        }

        // GET: Major/Details/5
        public ActionResult Details(int id)
        {
            return View();
        }

        // GET: Major/Create
        public ActionResult Create()
        {
            return View();
        }

        // POST: Major/Create
        [HttpPost]
        public ActionResult Create(FormCollection collection)
        {
            try
            {
                // TODO: Add insert logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        // GET: Major/Edit/5
        public ActionResult Edit(int id)
        {
            return View();
        }

        // POST: Major/Edit/5
        [HttpPost]
        public ActionResult Edit(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add update logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        // GET: Major/Delete/5
        public ActionResult Delete(int id)
        {
            return View();
        }

        // POST: Major/Delete/5
        [HttpPost]
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add delete logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
    }
}
View Code

 

由於學生表MajorId依賴於Major表,所以需要先有專業,才能新增學生數據(這裡不討論是否合理)

編寫邏輯代碼,創建視圖

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Zhong.Web.Models;

namespace Zhong.Web.Controllers
{
    public class MajorController : Controller
    {
        // GET: Major
        public ActionResult Index()
        {
            var majors = new EFDbEntities().T_Major.ToList();
            return View(majors);
        }

        // GET: Major/Details/5
        public ActionResult Details(int id)
        {
            var major = new EFDbEntities().T_Major.Find(id);
            if (major == null)
            {
                return Content("參數錯誤");
            }
            return View(major);
        }

        // GET: Major/Create
        public ActionResult Create()
        {
            return View();
        }

        // POST: Major/Create
        [HttpPost]
        public ActionResult Create(T_Major entity)
        {
            if (entity != null)
            {
                var entities = new EFDbEntities();
                entities.T_Major.Add(entity);
                entities.SaveChanges();
            }
            return RedirectToAction("Index");
        }

        // GET: Major/Edit/5
        public ActionResult Edit(int id)
        {
            var entity = new EFDbEntities().T_Major.Find(id);
            if (entity == null)
            {
                return Content("參數錯誤");
            }
            return View(entity);
        }

        // POST: Major/Edit/5
        [HttpPost]
        public ActionResult Edit(T_Major entity)
        {
            if (entity == null)
            {
                return Content("參數錯誤");
            }
            var entities = new EFDbEntities();
            #region 方式一 
            ////該方式一般是根據主鍵先讀取數據,然後再逐個賦值,最後更新
            //var oldEntity = entities.T_Major.Find(entity.Id);
            //if (oldEntity!=null)
            //{
            //    oldEntity.Name = entity.Name;
            //    entities.SaveChanges();
            //}
            #endregion

            #region 方式二
            //該方式是直接將新的實體(可能是new出來的並且對主鍵等的屬性賦值好了)附加到上下文,然後標記狀態為修改Modified
            entities.T_Major.Attach(entity);
            entities.Entry(entity).State = System.Data.Entity.EntityState.Modified;
            entities.SaveChanges();
            #endregion
            return RedirectToAction("Index");
        }

        // GET: Major/Delete/5
        public ActionResult Delete(int id)
        {
            var major = new EFDbEntities().T_Major.Find(id);
            return View(major);
        }

        // POST: Major/Delete/5
        [HttpPost]
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add delete logic here
                var entities = new EFDbEntities();
                var major = entities.T_Major.Find(id);
                entities.T_Major.Remove(major);
                entities.SaveChanges();
                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
    }
}
View Code

添加專業:

 

專業列表:

 

 

 

 

 

 

同樣實現學生控制器與視圖:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Zhong.Web.Models;

namespace Zhong.Web.Controllers
{
    public class StudentController : Controller
    {
        private EFDbEntities entities = new EFDbEntities();
        // GET: Student
        public ActionResult Index()
        {
            var students = entities.T_Student.ToList();
            return View(students);
        }

        // GET: Student/Details/5
        public ActionResult Details(int id)
        {
            var student = entities.T_Student.Find(id);
            return View(student);
        }

        // GET: Student/Create
        public ActionResult Create()
        {
            ViewData["MajorId"] = entities.T_Major.Select(m => new SelectListItem { Text = m.Name, Value = m.Id.ToString() });
            return View();
        }

        // POST: Student/Create
        [HttpPost]
        public ActionResult Create(T_Student entity)
        {
            entities.T_Student.Add(entity);
            entities.SaveChanges();
            return RedirectToAction("Index");
        }

        // GET: Student/Edit/5
        public ActionResult Edit(int id)
        {
            var student = entities.T_Student.Find(id);
            ViewData["MajorId"] = entities.T_Major.Select(m => new SelectListItem { Text = m.Name, Value = m.Id.ToString() });
            return View(student);
        }

        // POST: Student/Edit/5
        [HttpPost]
        public ActionResult Edit(T_Student entity)
        {
            if (entity == null)
            {
                return Content("參數錯誤");
            }
            entities.T_Student.Attach(entity);
            entities.Entry(entity).State = System.Data.Entity.EntityState.Modified;
            entities.SaveChanges();
            return RedirectToAction("Index");
        }

        // GET: Student/Delete/5
        public ActionResult Delete(int id)
        {
            var student = entities.T_Student.Find(id);
            return View(student);
        }

        // POST: Student/Delete/5
        [HttpPost]
        public ActionResult Delete(int id, FormCollection collection)
        {
            var student = entities.T_Student.Find(id);
            entities.T_Student.Remove(student);
            entities.SaveChanges();
            return RedirectToAction("Index");
        }
    }
}
View Code

添加學生時,報錯如下:

 

於是在控制器中增加如下代碼:

 

刷新頁面:

 編輯:

刪除:

 

列表:

 

在MajorController中有介紹EF的兩種更新方式

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 剛開始學習mongodb,對筆記做了一個整理。是基於nodejs來學習的。 1.mongodb介紹 mongodb 是C++語言編寫的,是一個基於分散式文件存儲的開源資料庫系統。 在高負載的情況下,添加更多的節點,可以保證伺服器性能。 mongodb 旨在為WEB應用提供可擴展的高性能數據存儲解決方 ...
  • 實體類創建後在方法中對哪些屬性賦值了,傳遞到底層方法時在底層如何得知哪些屬性被賦值過。如何監控屬性的更改,請看腦洞大開之《大花貓動了哪些小玩具》——記屬性監控之曲線救國。 ...
  • fafa ...
  • 隨著用戶量和併發數的增加,單台伺服器出現了性能問題,此時必須要將應用程式和資料庫分離,分離後整個網站變成三台伺服器了:應用伺服器(或稱web伺服器),資料庫伺服器和文件伺服器。這三台伺服器對伺服器的配置要求是不一樣的,應用伺服器需要處理大量的業務邏輯,所以需要更快更強大的CPU,資料庫伺服器需要快速 ...
  • 初始階段的網站一般訪問量都很小(QPS<500),此時只需要一臺伺服器就足夠,應用程式,資料庫和文件都放在這一臺伺服器上。如果是.net的話,通常操作系統使用windows server,應用程式開發使用asp.net,然後應用程式部署在IIS上,資料庫使用sql server。 單機網站 單機網站 ...
  • 創建項目 創建一個空的 Web 項目,併在 Nuget 裡面添加 SignalR,jQuery UI 包,添加以後項目里包含了 jQuery,jQuery.UI ,和 SignalR 的腳本。 服務端代碼 創建 Stock 類 創建 tockTicker 和 StockTickerHub 類 添加類 ...
  • 最近一段時間在看樸靈翻譯的《深入淺出nodejs》,裡面有提到一種脫離瀏覽器的客戶端網路通訊工具,curl命令,自己在電腦上試了一下,感覺非常好用,而且莫名的感覺這是一個非常強大的網路工具,一定會成為web開發者的一把小軍刀;因此就上網查了一下相關資料,並整理了一下相關的常用用法: 一、簡介 CUR ...
  • 一、前言 對於不久開源的surging受到不少.net同學的青睞,也受到.net core學習小組的關註,邀請加入.NET China Foundation 以方便國內.net core開源項目的推廣,我果斷接受邀請加入了隊伍進行互相交流學習,最近也更新了surging新的版本 更新內容: 1. C ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...