Guid 类型的工作流程 ID
我想在数据库中保存当前工作流程的 ID。但它的 id 来自 Guid 类型(我之前不知道),但 DB 中的列无法识别这种类型。 我想过将其向下转换为 int ,但是当我想检索它时,将其向下转换为 Guid 类型可能不安全。 有什么想法吗? 谢谢。
I want to save in my DB the id of the current workflow. but its id from type Guid (which i don't know before) but the column in DB can't recognize this type.
I thought about downcasting it to int, but when I want to retrieve it may its not safe to downcast it to Guid type.
Any idea?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你应该使用 varchar(36) 并将其仅存储为字符串。
这可以帮助您
数据库中的GUID类型
i guess you should use varchar(36) and store it as string only.
this could help you
GUID type in database