# dotnet-template **Repository Path**: huangmingji/dotnet-template ## Basic Information - **Project Name**: dotnet-template - **Description**: dotnet project template - **Primary Language**: C# - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-05-06 - **Last Updated**: 2023-06-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dotnet-template dotnet project template ## __运行环境__ * .NET6 * postgresql ## __生成数据库迁移代码__ ```bash # dotnet ef migrations add InitialCreate # https://docs.microsoft.com/zh-cn/ef/core/get-started/netcore/new-db-sqlite dotnet ef migrations add ``` ## __更新数据库__ ```bash dotnet ef database update ```