gpt4 book ai didi

c# - 在 SQL Server Compact Edition 中将 Entity Framework 代码中的种子主键首先设置为 0

转载 作者:行者123 更新时间:2023-11-30 16:46:43 26 4
gpt4 key购买 nike

我有这个 Entity Framework 代码一流:

public class ClientEvent
{
[Key]
public int? EventCode { get; set; }
public string Description { get; set; }
}

使用 SQL Server Compact Edition 的种子函数:

protected override void Seed(ClientEventsContext context)
{
var clientEvent = new ClientEvent
{
EventCode = 0,
Description = "Test"
};
context.Events.Add(clientEvent);
base.Seed(context);
}

当我在 ClientEvent 运行后检查数据库表时,我看到了这个条目:

EventCode   |   Description
---------------------------
1 | Test

注意到 EventCode 是 1 了吗?我希望它是 0。我怎样才能让这个主键从 0 开始?我试过使用上面的代码,但即使使用 0 本身也会将第一个条目设置为 1。

There is another question similar to this which works for SQL Server, but not SQL Server Compact Edition .我尝试使用其建议的答案将初始化程序设置为 0:

context.Database.ExecuteSqlCommand("DBCC CHECKIDENT ('ClientEvents', RESEED, 0)");

问题是:

System.Data.SqlServerCe.SqlCeException: There was an error parsing the query. [ Token line number = 1,Token line offset = 1,Token in error = DBCC ]

是否没有一种标准的方法可以首先使用 Entity Framework 代码执行此操作,而与所使用的数据库类型无关?

最佳答案

您可以将此语句与 SQL Server Compact 一起使用:

ALTER TABLE [MyTable] ALTER COLUMN [Id] IDENTITY (0,1)

关于c# - 在 SQL Server Compact Edition 中将 Entity Framework 代码中的种子主键首先设置为 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40180194/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com