如何清除 valueObject 中的索引属性?

发布于 2024-11-26 09:25:07 字数 205 浏览 2 评论 0原文

我已经使用值对象的索引映射到屏幕对象,以便新项目添加索引为 -1、-2、-3、-4、-5 等。现在我准备将这些新对象添加到数据库我想清除它们的索引值,以便我可以在它们上运行 createService。

它不允许我删除 object.property 并将其设置为 0 或尝试将其设置为 null 将不允许在数据库中创建对象。

我还可以使用什么其他方法来清理财产?

I have used the index of a value object to map to a screen object so that new items added index as -1, -2, -3, -4, -5 etc. Now that I am ready to add these new objects to the database I want to clear their index value so that I can run a createService on them.

It wont allow me to delete object.property and setting it to 0 or trying to set it to null will not allow the object to be created in the database.

What other method can I use for clearing the property?

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

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

发布评论

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

评论(1

成熟稳重的好男人 2024-12-03 09:25:07

首先,问题陈述不够好。还是让我尝试回答一下(根据我的理解)。我怀疑您正在尝试将其添加到索引属性设置为 autoIncrement 的数据库表中。如果是这样,为什么需要设置索引,例如-1、-2、-3等。只需维护对象的集合而不给它们任何索引。无论如何,新的 Item 只会添加到集合的末尾,因此您可以确定索引排序。

First of all, Problem statement is not good enough.Still let me try to answer it(as per my understanding). I suspect you are trying to add it to database table where index property is set to autoIncrement. If it is so, why do you need to set index such as -1,-2,-3 etc. Simply maintain a collection of your objects without giving them any index. Anyway, new Item will only be added at the end of the collection, so you can be sure about the index sequencing.

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