Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我正在使用实体框架,现在需要如何设置我自己的主键。
我使用 [Key] 数据注释,但是当我坚持实体时,即使我之前设置了该属性,该字段也会自动生成。
任何的想法?
我相信在您的 [Key] 属性中,您需要指定 DatabaseGeneratedOption 如下:
[Key, DatabaseGenerated(DataBaseGeneratedOption.None)]