Entity Framework Core生成的存储过程在MySQL中需要进行处理及PMC中的常用命令

在使用Entity Framework Core生成MySQL数据库脚本,对于生成的存储过程,在执行的过程中出现错误,需要在存储过程前面添加

delimiter //

附:可以使用Visual Studio中的程序包管理器控制台执行Entity Framework Core中的迁移命令。

PMC CommandUsage
Get-Help entityframework显示有关实体框架命令的信息。
Add-migraion <migration name>通过添加迁移快照来创建迁移。
Remove-Migration删除最后一个迁移快照。
Update-Database根据上一个迁移快照更新数据库架构。
Script-Migration使用所有迁移快照生成SQL脚本。
Scaffold-DbContext为指定的数据库生成DbContext和实体类型类。这称为逆向工程。
Get-DbContext获取有关DbContext类型的信息。
Drop-Database删除数据库。

命令详解:

Get-Help	
PM> get-help entityframework	_/\__	---==/    \\	___  ___   |.    \|\	| __|| __|  |  )   \\\	| _| | _|   \_/ |  //|\\	|___||_|       /   \\\/\\	
TOPIC	about_EntityFrameworkCore	
SHORT DESCRIPTION	Provides information about the Entity Framework Core Package Manager Console Tools.	
LONG DESCRIPTION	This topic describes the Entity Framework Core Package Manager Console Tools. 	See https://docs.efproject.net for information on Entity Framework Core.	The following Entity Framework Core commands are available.	Cmdlet                      Description	--------------------------  ---------------------------------------------------	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.	
SEE ALSO	Add-Migration	Drop-Database	Get-DbContext	Remove-Migration	Scaffold-DbContext	Script-Migration	Update-Database	
Add-Migration	
NAME	Add-Migration	
SYNOPSIS	Adds a new migration.	
SYNTAX	Add-Migration [-Name] <String> [-OutputDir <String>] [-Context <String>] [-Project <String>] 	[-StartupProject <String>] [<CommonParameters>]	
DESCRIPTION	Adds a new migration.	
REMARKS	To see the examples, type: "get-help Add-Migration -examples".	For more information, type: "get-help Add-Migration -detailed".	For technical information, type: "get-help Add-Migration -full".	
Remove-Migration	
NAME	Remove-Migration	
SYNOPSIS	Removes the last migration.	
SYNTAX	Remove-Migration [-Force] [-Context <String>] [-Project <String>] [-StartupProject <String>] 	[<CommonParameters>]	
DESCRIPTION	Removes the last migration.	
RELATED LINKS	Add-Migration	about_EntityFrameworkCore	
REMARKS	To see the examples, type: "get-help Remove-Migration -examples".	For more information, type: "get-help Remove-Migration -detailed".	For technical information, type: "get-help Remove-Migration -full".	
Update-Database	
NAME	Update-Database	
SYNOPSIS	Updates the database to a specified migration.	
SYNTAX	Update-Database [[-Migration] <String>] [-Context <String>] [-Project <String>] 	[-StartupProject <String>] [<CommonParameters>]	
DESCRIPTION	Updates the database to a specified migration.	
RELATED LINKS	Script-Migration	about_EntityFrameworkCore	
REMARKS	To see the examples, type: "get-help Update-Database -examples".	For more information, type: "get-help Update-Database -detailed".	For technical information, type: "get-help Update-Database -full".	
Script-migration	
NAME	Script-Migration	
SYNOPSIS	Generates a SQL script from migrations.	
SYNTAX	Script-Migration [-From] <String> [-To] <String> [-Idempotent] [-Output <String>] 	[-Context <String>] [-Project <String>] [-StartupProject <String>] 	[<CommonParameters>]	Script-Migration [[-From] <String>] [-Idempotent] [-Output <String>] [-Context <String>] 	[-Project <String>] [-StartupProject <String>] [<CommonParameters>]	
DESCRIPTION	Generates a SQL script from migrations.	
RELATED LINKS	Update-Database	about_EntityFrameworkCore	
REMARKS	To see the examples, type: "get-help Script-Migration -examples".	For more information, type: "get-help Script-Migration -detailed".	For technical information, type: "get-help Script-Migration -full".	
scaffold-dbcontext	
NAME	Scaffold-DbContext	
SYNOPSIS	Scaffolds a DbContext and entity types for a database.	
SYNTAX	Scaffold-DbContext [-Connection] <String> [-Provider] <String> [-OutputDir <String>] 	[-Context <String>] [-Schemas <String[]>] [-Tables <String[]>] 	[-DataAnnotations] [-Force] [-Project <String>] [-StartupProject <String>] 	[<CommonParameters>]	
DESCRIPTION	Scaffolds a DbContext and entity types for a database.	
RELATED LINKS	about_EntityFrameworkCore	
REMARKS	To see the examples, type: "get-help Scaffold-DbContext -examples".	For more information, type: "get-help Scaffold-DbContext -detailed".	For technical information, type: "get-help Scaffold-DbContext -full".	
Get-DbContext	
NAME	Get-DbContext	
SYNOPSIS	Gets information about a DbContext type.	
SYNTAX	Get-DbContext [-Context <String>] [-Project <String>] [-StartupProject <String>] 	[<CommonParameters>]	
DESCRIPTION	Gets information about a DbContext type.	
RELATED LINKS	about_EntityFrameworkCore	
REMARKS	To see the examples, type: "get-help Get-DbContext -examples".	For more information, type: "get-help Get-DbContext -detailed".	For technical information, type: "get-help Get-DbContext -full".	
Drop-Database	
NAME	Drop-Database	
SYNOPSIS	Drops the database.	
SYNTAX	Drop-Database [-Context <String>] [-Project <String>] [-StartupProject <String>] 	[-WhatIf] [-Confirm] [<CommonParameters>]	
DESCRIPTION	Drops the database.	
RELATED LINKS	Update-Database	about_EntityFrameworkCore	
REMARKS	To see the examples, type: "get-help Drop-Database -examples".	For more information, type: "get-help Drop-Database -detailed".	For technical information, type: "get-help Drop-Database -full".

get-help命令执行结果:640?wx_fmt=png分享一个关于Entity Framework的网站,希望对大家有帮助:https://www.entityframeworktutorial.net/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/313563.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Exceptionless 5.0.0本地Docker快速部署介绍

在之前我有专门写两篇文章介绍过Exceptionless这款开源日志项目的使用和部署&#xff0c;但是当时是基于4.1.0版本&#xff08;2017年的release&#xff09;&#xff0c;时隔两年多Exceptionless也推出了5.0.0版本。&#xff08;1&#xff09;&#xff08;2&#xff09;01—关于…

数据库事务及隔离级别

一、事务的基本要素&#xff08;ACID&#xff09; 1、原子性&#xff08;Atomicity&#xff09;&#xff1a;事务开始后所有操作&#xff0c;要么全部做完&#xff0c;要么全部不做&#xff0c;不可能停滞在中间环节。事务执行过程中出错&#xff0c;会回滚到事务开始前的状态…

定了!10 月 8 日!Jupyter Notebook 原生支持将正式来到 VS Code!

北京时间 2019 年 9 月 21 日&#xff0c;在 PyCon China 2019 大会上&#xff0c;前不久&#xff0c;我们已经可以尽管如此&#xff0c;还是有许多童鞋来询问这个功能何时能正式发布。现在&#xff0c;我们可以在 VS Code Python 插件的 Release Plan 看到正式的发布时间已经确…

图解MySQL 内连接、左连接、右连接

一、准备工作 用两个表&#xff08;a_table、b_table&#xff09;&#xff0c;关联字段a_table.a_id和b_table.b_id来演示一下MySQL的内连接、外连接&#xff08; 左(外)连接、右(外)连接、全(外)连接&#xff09;。 MySQL版本&#xff1a;Server version: 5.6.31 MySQL Comm…

微软想将新版Edge浏览器引入Linux

继推出 WSL2、将 exFAT 技术添加至 Linux 内核&#xff0c;和宣布第一届微软 Linux 大会后&#xff0c;微软再次瞄准了 Linux。这次 Linux 用户将很可能迎来新版 Edge 浏览器。微软网络技术程序经理 Sean Larson 在 Twitter 上发布了一条消息&#xff0c;表示 Edge 开发团队正在…

一套代码同时支持.NET Framework和.NET Core

在.NET Core的迁移过程中&#xff0c;我们将原有的.NET Framework代码迁移到.NET Core。如果线上只有一个小型的应用还好&#xff0c;迁移升级完成后&#xff0c;只需要维护.NET Core这个版本的代码。但是&#xff0c;如果是一个大型分布式应用&#xff0c;几百台Server&#x…

从壹开始 [Admin] 之五 ║ 实现『按钮』级别权限配置

正文一、前情回顾哈喽大家好&#xff0c;在这个欢庆的日子里&#xff0c;老张祝大家工作都能蒸蒸日上&#xff01;今天正好也是社团成立的第一天&#xff0c;我也是希望今天能是个纪念日&#xff0c;沾沾这个大喜庆&#xff01;放假这两天&#xff0c;倒是学到了很多东西&#…

MySQL——binlog,redo log

一、什么是binlog、redo log binlog属于逻辑日志&#xff0c;是逻辑操作。innodb redo属于物理日志&#xff0c;是物理变更。逻辑日志有个缺点是难以并行&#xff0c;而物理日志可以比较好的并行操作。 binlog是MySQL Server层记录的日志&#xff0c; redo log是InnoDB存储引…

“自启动”树莓派上的 .NET Core 3.0 环境

点击上方蓝字关注“汪宇杰博客”导语昨天发了一篇《自动配置环境变量Rapbian 系统启动时会去执行 .profile 文件里的命令。因此我们只需要把配置环境变量的命令加入 .profile 文件即可。在 Linux 中&#xff0c;.profile 扩展用于终端程序中的文件。Linux 和 Mac OS X 终端程序…

Nginx 配置内网访问树莓派4 ASP.NET Core 3.0 网站

喜迎国庆点击上方蓝字关注“汪宇杰博客”导语前几天发了两篇《能跑就行&#xff1a;Kestrel Hosting如果你的要求只是临时内网访问&#xff0c;可以只用 Kestrel 来承载 Web 服务器&#xff0c;只需要给 dotnet 命令一个 --urls 参数即可设置允许访问的主机名和端口号。我不希望…

常见的NoSQL数据库

NoSQL数据库发展迅猛&#xff0c;据说现在已经有上百种NoSQL数据库了&#xff0c;下面来了解下常见的一些NoSQL数据库 先来看张表&#xff0c;了解下典型的NoSQL数据库的分类 NoSQL一般特征&#xff1a; 临时性键值存储一般作为关系型数据库的缓存来使用由于存在数据丢失的可…

2019年9月中国编程语言排行榜,C#排第三

前两天&#xff0c;在 GitHub 上看到一份报告&#xff0c;上面统计了全国程编程语言排行榜 9 月份的情况&#xff0c;下面跟大家分享一下&#xff0c;这份报告里面都说了什么。https://github.com/juwikuang/china_job_survey/blob/master/notebook/201909/programming_languag…

从0开始编写dapper核心功能、压榨性能、自己动手丰衣足食

我偶然听说sqlsugar的性能比dapper强。对此我表示怀疑&#xff08;由于我一直使用的dapper存在偏见吧&#xff09;&#xff0c;于是自己测试了sqlsugar、freesql、dapper发现他们的给我的结果是sqlsugar>dapper>freesql&#xff08;这里并不是黑那个orm,毕竟不同orm功能不…

免费下载 80多种的微软推出入门级 .NET视频

.NET Core 3.0视频系列中宣布了80多个新的免费视频&#xff0c;这些视频同时放在Microsoft的Channel 9 和youtube上面。 在线观看由于跨洋网络效果不太好&#xff0c;下载到机器上慢慢看是最好的了。 所以Scott Hanselman 特别制作了一个页面 http://dot.net/videos。我把这个页…

数据库连接池原理及常用连接池介绍

一、背景介绍 1.1 什么是连接池 数据库连接池负责分配、管理和释放数据库连接&#xff0c;它允许应用程序重复使用一个现有的数据库连接&#xff0c;而不是再重新建立一个。 1.2 为什么要使用连接池 数据库连接是一种关键的有限的昂贵的资源&#xff0c;这一点在多用户的网…

DevOps案例研究|中华有为-解构华为软开云DevOps实践

内容来源&#xff1a;DevOps案例深度研究-华为软开云DevOps研究战队&#xff08;本文只展示部分PPT研究成果&#xff0c;更多细节请关注案例分享会&#xff0c;及本公众号。&#xff09;本案例内容贡献者&#xff1a;王英伟&#xff08;Topic Leader&#xff09;、蔡志超、陈安…

Excel催化剂插件安装过程升级,离线版全网公开下载!

Exce催化剂推出近2年&#xff0c;之前一直在推崇在线版的安装方式&#xff0c;但因安装步骤较多&#xff0c;可能吓退了一部分初级用户&#xff0c;此轮重新梳理&#xff0c;让安装方式更简单&#xff0c;也公开了离线版的安装文件&#xff0c;若部分用户不想使用在线版&#x…

包邮送88本畅销技术书

来给大家送一波福利&#xff0c;这次联系了 11个好友一起给各位送书&#xff0c;每个号送 8 本&#xff0c;一共 88本&#xff0c;还包邮哦。感谢清华大学出版社对本次活动的赞助。01 书怎么送很简单&#xff0c;关注下面的公众号&#xff0c;并在后台回复「抽奖」&#xff0c;…

字典树(Trie树)的原理与实现

一、概述 1.1 基本概念 字典树&#xff0c;又称为单词查找树&#xff0c;Tire数&#xff0c;是一种树形结构&#xff0c;它是一种哈希树的变种。 1.2 基本性质 根节点不包含字符&#xff0c;除根节点外的每一个子节点都包含一个字符从根节点到某一节点。路径上经过的字符连接…

C#刷遍Leetcode面试题系列连载(1) - 入门与工具简介

点击蓝字“dotNET匠人”关注我哟加个“星标★”&#xff0c;每日 7:15&#xff0c;好文必达&#xff01;什么要刷LeetCode大家都知道&#xff0c;很多对算法要求高一点的软件公司&#xff0c;比如美国的FLAGM (Facebook、LinkedIn、Amazon/Apple、Google、Microsoft)&#xff0…