gpt4 book ai didi

c# - SQL Server CE 4.0、Code First 和 GUIDE 键

转载 作者:太空宇宙 更新时间:2023-11-03 10:30:22 25 4
gpt4 key购买 nike

我使用代码优先来设计我的模型,我选择 GUID 作为我的主键的数据类型。我的类(class)如下所示:

public class AccountMovementPlan
{
[Key, DatabaseGenerated( System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.Identity )]
public Guid AccountMovementPlanID { get; set; }

[Required]
public Guid UserAccountID { get; set; }

[ForeignKey("UserAccountID")]
public UserAccount UserAccount { get; set; }

// etc, etc, etc
}

接下来,我选择 SQL Server CE 4.0 作为我的数据存储,实现配置以使用 SqlCEConnectionFactory 并使用 DropCreateDatabaseIfModelChanges 作为初始化方法。

但是,当我尝试运行我的应用程序时,遇到错误

An unhandled exception of type 'System.Data.SqlServerCe.SqlCeException occurred in EntityFramework.dll

这是在告诉我,那个

The identity column must be either an integer or big integer data type and cannot be NULL.

我的问题很明显:代码优先的 SQL Server CE 不支持自动生成的 GUID 作为 PK?或者,我哪里有错误吗?

非常感谢。

最佳答案

不,不支持,您必须在代码中使用 Guid.NewGuid() 来分配值。

关于c# - SQL Server CE 4.0、Code First 和 GUIDE 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30403645/

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