c# – 如何使用String属性作为Entity Framework中的主键

前端之家收集整理的这篇文章主要介绍了c# – 如何使用String属性作为Entity Framework中的主键前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是EF的新手,并尝试通过代码第一个方法在ETF6.0中做我的第一步,现在我有一个问题.

我有一个财产

[Key]
public string FooId { get; set; }

这是我的主要关键.

但如果我跑

PM> Update-Database

命令在包管理器控制台中更新挂起迁移到数据库我收到以下错误

Identity column ‘FooId’ must be of data type int,bigint,smallint,
tinyint,or decimal or numeric with a scale of 0,and constrained to
be nonnullable.

如果我改变我的模型中的PK

[Key]
public int FooId { get; set; }

一切都很好

但是我需要PK来形容字符串,因为它在我的情况下是绝对的感觉.我知道有缺点,但对我来说是有必要的.

我在这里看到一个较老的帖子How to make string as primary key in entity framework!.

但是似乎没有解决我的问题,或者我不明白.

是否真的不能在sql数据库上使用字符串作为PK?

还是有办法做到这一点?

解决方法

这是创建没有启用Identity Autoincrement的PK的正确方法
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public string FooId { get; set; }
原文链接:https://www.f2er.com/csharp/96947.html

猜你在找的C#相关文章