iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 10
0
Microsoft Azure

Azure 的自我修煉系列 第 10

Day10 實作官網 ASP.NET Core 教學(二)

  • 分享至 

  • xImage
  •  

2. 將模型新增至 Razor 頁面應用程式

應用程式的模型類別會使用 Entity Framework Core (EF Core) 來處理資料庫,EF Core 是物件關聯式對應程式 (O/RM) 可簡化資料存取。

新增資料模型

## 新增名為 Models 的資料夾。
mkdir Models
touch Models/Article.cs 

我們稍微修改一下Table名稱和欄位名稱
namespace RazorPagesMovie.Models 改為 namespace PellokITHome.Models
Models 改為 Article
Genre 改為 Link
Price 改為 Count

using System;
using System.ComponentModel.DataAnnotations;

namespace PellokITHome.Models
{
    public class Article
    {
        public int ID { get; set; }
        public string Title { get; set; }

        [DataType(DataType.Date)]
        public DateTime ReleaseDate { get; set; }
        public string Link { get; set; }
        public decimal Count { get; set; }
    }
}

https://ithelp.ithome.com.tw/upload/images/20200908/20072651HiUGkNHv43.png

新增資料庫內容類別

mkdir Data
touch Data/PellokITHomeContext.cs

RazorPagesMovie 改成 PellokITHome
Movie 改成 Article

using Microsoft.EntityFrameworkCore;

namespace PellokITHome.Data
{
    public class PellokITHomeContext : DbContext
    {
        public PellokITHomeContext (
            DbContextOptions<PellokITHomeContext> options)
            : base(options)
        {
        }

        public DbSet<PellokITHome.Models.Article> Article { get; set; }
    }
}

https://ithelp.ithome.com.tw/upload/images/20200908/20072651xVZHWS3SsS.png

新增資料庫連線字串

將連接字串新增至 appsettings.json 檔案

  "ConnectionStrings": {
    "ArticleContext": "Data Source=MvcArticle.db"
  }

https://ithelp.ithome.com.tw/upload/images/20200908/20072651Ju0hySpkvG.png

登錄資料庫內容

在 Startup.cs 最上方新增下列 using 陳述式

using PellokITHome.Data;
using Microsoft.EntityFrameworkCore;

使用相依性插入容器,在 Startup.ConfigureServices 中註冊資料庫內容。

public void ConfigureServices(IServiceCollection services)
        {
            services.AddRazorPages();

            services.AddDbContext<PellokITHomeContext>(options =>
                options.UseSqlite(Configuration.GetConnectionString("ArticleContext")));

        }

https://ithelp.ithome.com.tw/upload/images/20200908/20072651prHqVaLUjY.png

建置執行專案,以確認沒有任何編譯錯誤。

初次執行 vscode 時,會需要創建 launch.json,告訴 vscode 這是什麼專案
https://ithelp.ithome.com.tw/upload/images/20200908/20072651cJgiKdsxaQ.png
https://ithelp.ithome.com.tw/upload/images/20200908/20072651nnkwHJkrh4.png

執行專案
https://ithelp.ithome.com.tw/upload/images/20200907/20072651mqEZKs9WxV.png
https://ithelp.ithome.com.tw/upload/images/20200907/20072651pQ1Y1tPU7R.png

使用 aspnet-codegenerator 來產生頁面程式

dotnet aspnet-codegenerator 官方指令文件

查看 aspnet-codegenerator 指令說明

dotnet aspnet-codegenerator -h

https://ithelp.ithome.com.tw/upload/images/20200908/200726517Mq2lLe1VI.png

我們使用 razorpage 所以,再來查看 razorpage 的用法

dotnet aspnet-codegenerator razorpage -h

https://ithelp.ithome.com.tw/upload/images/20200908/20072651tWtucLZx0p.png
https://ithelp.ithome.com.tw/upload/images/20200908/200726518ObicMfbn4.png

由上面的說明我們調整指令參數:
Model Class(-m): Article
DbContext Class(-dc): PellokITHomeContext
輸出路徑(-outDir): Pages/Articles
使用預設Layout (-udl)
--referenceScriptLibraries

dotnet aspnet-codegenerator razorpage -m Article -dc PellokITHomeContext -udl -outDir Pages/Articles --referenceScriptLibraries

https://ithelp.ithome.com.tw/upload/images/20200907/20072651GxkBoKiqYS.png

建立的檔案
Scaffold 處理序會建立下列檔案:
Pages/Movies:建立、刪除、詳細資料、編輯和索引。

跑aspnet-codegenerator指令前記得先把服務關閉喔!

使用 SQLite 進行開發,SQL 伺服器進行生產

修改 Startup.cs

public Startup(IConfiguration configuration, IWebHostEnvironment env)
{
    Environment = env;
    Configuration = configuration;
}

public IConfiguration Configuration { get; }
public IWebHostEnvironment Environment { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
    services.AddRazorPages();
    if(Environment.IsDevelopment()){
        services.AddDbContext<PellokITHomeContext>(options =>
            options.UseSqlite(Configuration.GetConnectionString("ArticleContext")));
    }
    else
    {
        services.AddDbContext<PellokITHomeContext>(options =>
            options.UseSqlite(Configuration.GetConnectionString("ArticleContext")));
    }

}

https://ithelp.ithome.com.tw/upload/images/20200908/200726513gI7I8WCE0.png

使用 Entity Framework Core tools 管理資料庫

Entity Framework Core tools reference - .NET Core CLI

查看 dotnet ef 指令說明

dotnet ef -h 

https://ithelp.ithome.com.tw/upload/images/20200908/20072651l9rKtoIOku.png

查看 ef migrations 移轉指令說明

dotnet ef migrations -h

https://ithelp.ithome.com.tw/upload/images/20200908/20072651qHG91FAcoa.png

指令 說明 範例
add 增加移轉 dotnet ef migrations add InitialCreate
list 查看移轉列表 dotnet ef migrations list
remove 刪除移轉 dotnet ef migrations remove InitialCreate
script 產生SQL腳本 dotnet ef migrations script

如果對於DB有欄位異動或增加資料表,
可以使用移轉指令來對資料庫做管理,
上面幾個指令大家可以玩玩看。

使用 dotnet ef 指令,記得先把專案停止

初始移轉

dotnet ef migrations add InitialCreate

https://ithelp.ithome.com.tw/upload/images/20200907/20072651AjRjgI4o4X.png

查看 ef database 指令說明

dotnet ef database -h

https://ithelp.ithome.com.tw/upload/images/20200908/200726515r7LEKx3LW.png

指令 說明 範例
drop 刪除資料庫 dotnet ef database drop
update 創建或更新資料庫 dotnet ef database update

創建或更新資料庫

dotnet ef database update

https://ithelp.ithome.com.tw/upload/images/20200908/200726515SqksFAhMn.png

啟動服務,檢查頁面功能是否正常
https://localhost:5001/Articles/create
https://ithelp.ithome.com.tw/upload/images/20200909/20072651IPrd7obsBI.png

https://localhost:5001/Articles/index
https://ithelp.ithome.com.tw/upload/images/20200909/20072651PbUnKFLpln.png

查看 SQLite.db

在vscode 安裝 vscode-sqlite,就可以查看SQLite db了
https://ithelp.ithome.com.tw/upload/images/20200908/20072651dnsFZiGrKd.png

點選[commnad+shift+p] 叫出工具列,輸入"SQLite: open databae"
https://ithelp.ithome.com.tw/upload/images/20200909/2007265126OjCWXlHy.png

點選MvcArticle.db
https://ithelp.ithome.com.tw/upload/images/20200909/20072651VuxX2BE1sM.png

左側欄會有SQLITE EXPLORER 頁籤,就可以查看我們剛剛創建的一筆文章資料
https://ithelp.ithome.com.tw/upload/images/20200909/20072651GWhfKUluj1.png

提交版本

把 db 加入到 .gitignore 檔案,
db不是程式碼,不要加入Git版控。

查看檔案修改記錄

git status

https://ithelp.ithome.com.tw/upload/images/20200909/20072651GQeJjBcAJO.png

加入索引,提交版本

git add .
git commit -m "add article models"

https://ithelp.ithome.com.tw/upload/images/20200909/20072651bBBBaFjqp9.png

上傳到GitHub

git push

https://ithelp.ithome.com.tw/upload/images/20200909/20072651zPTIWdxHfo.png

相關連結:

上一篇 Day09 實作官網 ASP.NET Core 教學(一)
下一篇 Day11 實作官網 ASP.NET Core 教學(三)


上一篇
Day09 實作官網 ASP.NET Core 教學(一)
下一篇
Day11 實作官網 ASP.NET Core 教學(三)
系列文
Azure 的自我修煉30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言