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.
我有一个表,通常在插入时,自动键会增加。但是,在某些情况下我们想要设置 ID(就像在 SQL 中使用“IDENTITY INSERT”很容易做到的那样)。
有没有办法用 LINQ to SQL 来完成这个?
谢谢,
看看这里:http ://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/566e9540-911e-48b4-ac31-f69c0ab9f7fb/
最后回复在这里:http ://forums.asp.net/t/1208607.aspx
如果你想让 IDENTITY 增量总是关闭
编辑模型
public class TableName { [Key,DatabaseGenerated(DatabaseGeneratedOption.None)] public int ID { get; set; } ... }