用了 EF 吗?给主键对应的属性标记成自增即可,举例:
[Key] // 标记为主键 [DatabaseGenerated(DatabaseGeneratedOption.Identity)] // 标记为自增public int Id { get; set; }