SQL 服务器 CE 4.0、Code First 和 GUIDE 密钥
SQL Server CE 4.0, CodeFirst and GUID keys
我使用代码优先来设计我的模型,我选择 GUID 作为我的主键的数据类型。我的 类 看起来像这样:
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代码优先的服务器 CE 不支持自动生成的 GUID 作为 PK?或者,我哪里有错误吗?
非常感谢。
不,不支持,您必须在代码中使用 Guid.NewGuid() 来赋值。
我使用代码优先来设计我的模型,我选择 GUID 作为我的主键的数据类型。我的 类 看起来像这样:
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代码优先的服务器 CE 不支持自动生成的 GUID 作为 PK?或者,我哪里有错误吗?
非常感谢。
不,不支持,您必须在代码中使用 Guid.NewGuid() 来赋值。