9.1 翻译系列:数据注解特性之----Table【EF 6 Code-First 系列】
原文地址:
table特性可以应用于一个领域类上面,用来在数据库中生成相应名称的数据表。它重写了ef 6和 ef code 中默认的约定,根据默认约定,ef 6和ef core创建的表的名称是实体名称+s(或者es),并且创建的数据表的列名称和实体属性名称一样。
table attribute: [table(string name, properties:[schema = string])
name:数据表的名称
schema:数据库的模式名称【可选的】
在上面的例子中,table特性应用于student实体上。所以,ef将会重写默认的约定,并且创建名称为studentmaster的数据表,而不是名称为students的数据表,例如:
使用schema
属性来指定数据表的模式名称:
ef将会创建studentmaster表,并且指定表的模式名为admin:
好了,理论介绍完了,我们动手实践一下:
1.创建一个控制台应用程序,名称为:efannotationtable
2.安装ef:【install-package entityframework -version 6.2.0】
3. 创建一个student类:
public class student { public int studentid { get; set; } public string name { get; set; } public int age { get; set; } public string email { get; set; } }
4.创建一个上下文类efdbcontext:【base中的name=后面名称要和sql连接字符串名称一样。】
public class efdbcontext:dbcontext { public efdbcontext() : base("name=constr") { } public dbset<student> studenttable { get; set; } }
5.配置文件中配置连接字符串:
<connectionstrings> <add name="constr" connectionstring="server=.;database=efannotationtabledb;uid=sa;pwd=password_1" providername="system.data.sqlclient"/> </connectionstrings>
6.测试程序:
class program { static void main(string[] args) { using (var db = new efdbcontext()) { list<student> lststumodel= db.studenttable.tolist(); } console.writeline("success"); console.readkey(); } }
运行程序:【出现success字样,说明已经生成数据库和数据表成功了!】
我们看一下数据库:
这就是ef默认为我们生成的数据表,可以看到,表名称默认是实体名称+s后缀。
现在我们使用数据注解:修改一下student实体:
运行之前,我们需要先手动删除一下刚才生成的数据库和数据表。因为这里我没有启用数据库迁移技术。
可以看到生成的表名是:studentinfo了。现在我们使用数据注解,指定一下表的模式名称:
算了,我还是修改一下代码:免得每次测试都要手动删除数据库。【ps:这里直接运行就会报下图错误:】
我们改一下:上下文类的代码,
然后运行:
成功了,我们看下数据库:
看到了么,模式名,变成了我们设定的my.好了,这一篇数据注解之table,就介绍完了,大家有不明白的可以留言,我会一一回复,谢谢支持!
上一篇: Form 表单提交的几种方式
下一篇: 程序员爸爸带娃微信群
推荐阅读
-
5.翻译系列:EF 6中数据库的初始化(EF 6 Code-First 系列)
-
9.3 翻译系列:数据注解特性之Key【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系列】
-
20.1翻译系列:EF 6中自动数据迁移技术【EF 6 Code-First系列】
-
14.翻译系列:从已经存在的数据库中生成上下文类和实体类【EF 6 Code-First系列】
-
18.翻译系列:EF 6 Code-First 中的Seed Data(种子数据或原始测试数据)【EF 6 Code-First系列】
-
5.翻译系列:EF 6中数据库的初始化(EF 6 Code-First 系列)