4、添加【Startup.cs】服务配置
命名空间需求:
所需代码:
添加位置:
【appsetting.json】配置文件配置:
配置字符串:
配置位置:
账号密码的方式:【Data Source=服务器地址;Initial Catalog=数据库name;User Id=用户名;Password=密码;】
5、EF,通过构造方法注入测试
5.1、添加【api控制器】
5.2添加构造方法注入EF生成的类【Girl1804Context】
5.3、配置路由【[Route("api/[controller]/[action]")]】以及创建查询测试EF
5.4、启动项目,并访问【api接口】,路径为:【http://localhost:5000/api/Test/GetInfo】
【Ctrl+F5】启动
查看浏览器:默认打开路径应为【http://localhost:5000/weatherforecast】
输入:【http://localhost:5000/api/Test/GetInfo】进行数据访问测试。