How to set starting value for an Identity primary key in Entity Framework code first?(如何首先在实体框架代码中设置身份主键的起始值?)
问题描述
在我的项目中,我首先使用实体框架代码创建 Appointments
表.当我将整数主键 AppointmentNo
设置为 [Key]
和 [Required]
时,它会创建初始主键以 1 开头的表.
In my project I am creating the Appointments
table using Entity Framework code first. When I set my integer primary key, AppointmentNo
as [Key]
and [Required]
, it creates the table with initial primary key starting with 1.
我希望约会号码从 1000 开始.我的数据库是 SQL Server.请帮我.先感谢您.
I want the appointment numbers to start at 1000. My database is SQL Server. Please help me. Thank you in advance.
[DataContract]
public class Appointment
{
[DataMember]
[Key]
[Required]
public int AppointmentNo { get; set; }
[DataMember]
[Required]
public string DoctorUN { get; set; }
[DataMember]
[Required]
public string PatientUN { get; set; }
}
推荐答案
不能使用ef注解,但是可以在迁移UP方法中执行sql
It's not possible using ef annotations,but you can execute sql in migration UP method
Sql("DBCC CHECKIDENT ('Appointment', RESEED, 1000)");
这篇关于如何首先在实体框架代码中设置身份主键的起始值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何首先在实体框架代码中设置身份主键的起始值?


- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04