老衲要还俗*

导航

给项目导入ef.core

1.安装ef.core 包

 

 

  .Design        CodeFirst(代码先行) 先在程序中建立实体结构,在将实体结构生成对应的数据库。

  .SqlServer   核心驱动

  .Tools    CodeFirst工具包  将实体结构映射成对应的数据库表的工具包

2.将数据库表进行映射成实体对象 Database First(数据库表先行)

 

 

get-help entityframework 获取帮助

 Scaffold-DbContext -Connection "Server=.;Database=web;uid=sa;pwd=12345678" Microsoft.EntityFrameworkCore.SqlServer -OutputDir "Entities"

3.在appsetting配置文件中加入连接数据库的字符串 

 

 

 这个是本机登录。

  "ConnectionStrings": {"web": "Data Source=.;initial Catalog=web;Integrated Security=True;"}

4.startup配置类中进行依赖注入

 

 

 

services.AddScoped<DbContext, webContext>();
services.AddDbContext<webContext>(option =>
{
option.UseSqlServer(Configuration.GetConnectionString("web"));
});

5.Code Frist模式

 

 

 

 

 

 

add-migration

update-database

先建立实体模型 再建立上下文类 进行迁移

要将应用程序的配置信息传递给DbContext,并对DbContextOptions进行实例化

再DbContext类中我们要对使用中的每个实体,都添加Dbset<TEntity>属性

 

posted on 2022-09-15 18:09  老衲要还俗*  阅读(56)  评论(0)    收藏  举报