摘要:
Scaffold-DbContext "Server=数据库地址;Database=数据库名称;User ID=登陆名;Password=密码" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models 阅读全文
文章分类 - core
asp.net core3.1 实战开发(配置文件的读取方式)
2022-03-11 10:32 by idea555, 72 阅读, 收藏, 编辑
摘要:
构造函数注入 private readonly IConfiguration _iConfiguration; public ThirdController(IConfiguration configuration) { this._iConfiguration = configuration; } 阅读全文