# webapi **Repository Path**: pys6/webapi ## Basic Information - **Project Name**: webapi - **Description**: No description available - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-16 - **Last Updated**: 2025-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 安装包 ``` //mysql dotnet add package Microspft EntityFrameworkCore.mysql - 核心依赖包:Microsoft.EntityFrameworkCore - 工具依赖包:Microsoft.EntityFrameworkCore.Design ``` ### 安装dotnet ef ``` dotnet tool install --global dotnet-ef ``` ### 数据库迁移 ``` // 生成数据库迁移文件(里面包含表的sql文件) dotnet ef migrations add InitialCreate // 将迁移文件应用到数据库,根据迁移文件里面的sql文件生成表或更新表 dotnet ef database update ```