依赖注入的使用 博客文章 http://www.jessetalk.cn/2017/11/06/di-in-aspnetcore/
1 | 代码:Startup.cs |
更改启动的URL(友方链接:修改URL详细介绍)
1 | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => |
IHostingEnvironment
1 |
1.https://jwt.io
2.postman 调试api 工具
查看MVC的帮助
dotnet new MVC --help
新建项目
dotnet new MVC -au individual -uld --name IdentityAample
根据项目设置生产database
dotnet ef databae update
42.EF Core Miagration
ASP.NET Core MVC -EF Migration
序号 | 命令 | 英文解析 | 中文解析 |
一 | 1.手动命令行的方式 | ||
二 | 2.代码自动方式 | ||
1 | dotnet ef migrations add initialCreate | Add Migration | 添加迁移 |
2 | dotnet ef database update | Update Database | 更新数据模型 |
3 | dotnet ef migrations remove | Remove MIgration | 移除迁移 |
4 | dotnet ef database update Last GoodMigration | Update Database LastGoodMigration | 更新数据库上次良好的迁移 |
5 | dotnet ef migrations script | Script Migration | 脚本迁移 |
6 | dotnet ef migrations add VSinit |