一、.NetCore EF 之命令行

一、前言

最近在学习研究ABP,使用到微软的ORM框架 Entity Framework(后面简称EF),将其基本操作记录下来。

二、程序包管理器控制台

为了能够在控制台中使用命令行来操作EF,需要先安装Microsoft.EntityFrameworkCore.Tools

安装

Install-Package Microsoft.EntityFrameworkCore.Tools

更新
通过该指令就可以升级Microsoft.EntityFrameworkCore.Tools

Update-Package Microsoft.EntityFrameworkCore.Tools

查看
通过该指令就可以查看Microsoft.EntityFrameworkCore.Tools

Get-Help about_EntityFrameworkCore

在这里插入图片描述

出现以上图形信息,则说明Microsoft.EntityFrameworkCore.Tools安装成功,下面就可以进行更新、创建、删除数据库和数据表了。

三、命令行指令

  Add-Migration              Adds a new migration.

  Drop-Database               Drops the database.

  Get-DbContext               Gets information about a DbContext type.

  Remove-Migration            Removes the last migration.

  Scaffold-DbContext          Scaffolds a DbContext and entity types for a database.

  Script-Migration            Generates a SQL script from migrations.

  Update-Database             Updates the database to a specified migration.

四、CodeFirst 命令步骤

添加EntityFramework

命令:Install-Package EntityFramework

1、启用迁移

Enable-Migrations 

2、为挂起的Model变化添加迁移脚本

Add-Migration 名字    (在已有数据库中使用Code First时标记当前数据库状态: Add-Migration 名字 -IgnoreChanges)

3、将挂起的迁移更新到数据库

Update-Database
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值