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 键的类型的实体(例如 Person(1234)),但现在我需要将这些键更改为具有字符串名称(例如 Person("username"))。
我应该如何实现这一目标?
你有两个选择:
一旦实体被保存到数据存储中,它的键就不能改变。因此,您要么必须使用现有键,要么使用新键创建新实体并将任何现有指针重新映射到原始实体。