21.翻译系列:Entity Framework 6 Power Tools【EF 6 Code-First系列】
程序员文章站
2022-03-04 13:24:27
原文链接:https://www.entityframeworktutorial.net/code-first/entity-framework-power-tools.aspx 大家好,这里就是EF 6 Code-First 系列的最后一篇文章了。没有辜负大家的期望,都更新完了,2015年很早的时 ......
原文链接:
大家好,这里就是ef 6 code-first 系列的最后一篇文章了。没有辜负大家的期望,都更新完了,2015年很早的时候,有几篇没更新,然后,这次重新把之前的删掉,学习之后更新的!
ef 6 code-first系列文章目录:
- 1 翻译系列:什么是code first(ef 6 code first 系列)
- 2.翻译系列:为ef code-first设置开发环境(ef 6 code-first系列)
- 3.翻译系列:ef code-first 示例(ef 6 code-first系列)
- 4.翻译系列:ef 6 code-first默认约定(ef 6 code-first系列)
- 5.翻译系列:ef 6中数据库的初始化(ef 6 code-first 系列)
- 6.翻译系列:ef 6 code-first中数据库初始化策略(ef 6 code-first系列
- 7.翻译系列:ef 6中的继承策略(ef 6 code-first 系列)
- 8.翻译系列: ef 6中配置领域类(ef 6 code-first 系列)
- 9.翻译系列:ef 6以及ef core中的数据注解特性(ef 6 code-first系列)
- 9.1 翻译系列:数据注解特性之----table【ef 6 code-first 系列】
- 9.2 翻译系列:数据注解特性之---column【ef 6 code first系列】
- 9.3 翻译系列:数据注解特性之key【ef 6 code-first 系列】
- 9.4 翻译系列:ef 6以及 ef core中的notmapped特性(ef 6 code-first系列)
- 9.5 翻译系列:数据注解之foreignkey特性【ef 6 code-first系列】
- 9.6 翻译系列:数据注解之index特性【ef 6 code-first系列】
- 9.7 翻译系列:ef数据注解特性之--inverseproperty【ef 6 code-first系列】
- 9.8 翻译系列:数据注解特性之--required 【ef 6 code-first系列】
- 9.9 翻译系列:数据注解特性之--maxlength 【ef 6 code-first系列】
- 9.10 翻译系列:ef数据注解特性之stringlength【ef 6 code-first系列】
- 9.11 翻译系列:数据注解特性之--timestamp【ef 6 code-first系列】
- 9.12 翻译系列:数据注解特性之concurrencycheck【ef 6 code-first系列】
- 10.翻译系列:ef 6中的fluent api配置【ef 6 code-first系列】
- 10.1.翻译系列:ef 6中的实体映射【ef 6 code-first系列】
- 10.2.翻译系列:使用fluent api进行属性映射【ef 6 code-first】
- 11.翻译系列:在ef 6中配置一对零或者一对一的关系【ef 6 code-first系列】
- 12.翻译系列:ef 6 中配置一对多的关系【ef 6 code-first系列】
- 13.翻译系列:code-first方式配置多对多关系【ef 6 code-first系列】
- 14.翻译系列:从已经存在的数据库中生成上下文类和实体类【ef 6 code-first系列】
- 15.翻译系列:ef 6中的级联删除【ef 6 code-first 系列】
- 16.翻译系列:ef 6 code -first中使用存储过程【ef 6 code-first系列】
- 17.翻译系列:将fluent api的配置迁移到单独的类中【ef 6 code-first系列】
- 18.翻译系列:ef 6 code-first 中的seed data(种子数据或原始测试数据)【ef 6 code-first系列】
- 19.翻译系列:ef 6中定义自定义的约定【ef 6 code-first约定】
- 20.翻译系列:code-first中的数据库迁移技术【ef 6 code-first系列】
- 20.1翻译系列:ef 6中自动数据迁移技术【ef 6 code-first系列】
- 20.2.翻译系列:ef 6中基于代码的数据库迁移技术【ef 6 code-first系列】
- 21.翻译系列:entity framework 6 power tools【ef 6 code-first系列】
entity framework 6 power tools是visual studio中使用code-first的时候的设计时的工具。总所周知,code-first不支持对模型提供图形化设计的界面。这个工具就是允许你为实体生成设计器、xml、并且ddl sql。
从这里为visual studio 2015/2017下载安装ef 6 power tools. visual studio marketplace.
安装之后。右键上下文类,有下面的功能:
- view entity data model (read-only)--在实体模型设计器中显示一个只读的code-first模型视图。
- view entity data model xml--显示相关的code-first实体的edmx xml
- view entity data model ddl sql--在实体数据模型中,将ddl sql转到ssdl。
- generate views ---通过ef运行时,生成预编译的视图,用来提高启动的性能。添加生成的视图文件到项目中。
在code-first方式中,点击view entity data model,然后就会为你的所有实体生成只读的视图。
上一篇: PHP开发的微信公众平台消息接口具体流程
下一篇: DS控件库 DS开放式下拉列表
推荐阅读
-
5.翻译系列:EF 6中数据库的初始化(EF 6 Code-First 系列)
-
9.3 翻译系列:数据注解特性之Key【EF 6 Code-First 系列】
-
2.翻译系列:为EF Code-First设置开发环境(EF 6 Code-First系列)
-
11.翻译系列:在EF 6中配置一对零或者一对一的关系【EF 6 Code-First系列】
-
9.7 翻译系列:EF数据注解特性之--InverseProperty【EF 6 Code-First系列】
-
9.翻译系列:EF 6以及EF Core中的数据注解特性(EF 6 Code-First系列)
-
9.9 翻译系列:数据注解特性之--MaxLength 【EF 6 Code-First系列】
-
9.10 翻译系列:EF数据注解特性之StringLength【EF 6 Code-First系列】
-
21.翻译系列:Entity Framework 6 Power Tools【EF 6 Code-First系列】
-
15.翻译系列:EF 6中的级联删除【EF 6 Code-First 系列】