DataColumn.AutoIncrementSeed = -1
如果 AutoIncrementSeed 属性的值为 -1 意味着什么?
What does it means if AutoIncrementSeed property has value -1 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果 AutoIncrementSeed 属性的值为 -1 意味着什么?
What does it means if AutoIncrementSeed property has value -1 ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
SQL Server 表的架构以及数据无法覆盖自动编号增量。
必须把这个代码拿出来
The schema of sql server table along with the data, couldn't override the AutoNumber Increment.
have to take this code out
这意味着新的 id 将从数字 -1 开始分配。如果与自动递增步长 -1 结合使用,新的 ID 将减少:即 -1、-2、-3 等。这对于在将数据集保存到实际数据库之前在数据集中分配 ID 很有价值- 负数可帮助您轻松识别未保存的记录,并可在保存后自动更新为正 ID。
希望这有帮助,
史蒂夫
This means the new ids will start being allocated from the number -1. If it is coupled with an auto increment step of -1, the new IDs will decrease: ie, -1, -2, -3, etc. This is valuable for allocating IDs in a dataset before the dataset is saved to the actual database - the negative numbers help you easily identify unsaved records and can be automatically updated with positive IDs after the save.
Hope this helps,
Steve