DataColumn.AutoIncrementSeed = -1

发布于 2024-08-23 15:51:16 字数 43 浏览 5 评论 0原文

如果 AutoIncrementSeed 属性的值为 -1 意味着什么?

What does it means if AutoIncrementSeed property has value -1 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安穩 2024-08-30 15:51:17

SQL Server 表的架构以及数据无法覆盖自动编号增量。

必须把这个代码拿出来

Adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey 

The schema of sql server table along with the data, couldn't override the AutoNumber Increment.

have to take this code out

Adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey 
甩你一脸翔 2024-08-30 15:51:16

这意味着新的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文