从字符串转换为 uniqueidentifier 时 ASP.NET 转换失败
我有一个表,它有一个主键(UserID),它的类型是UniqueIdentifier。 我试图在该字段中插入一个值,但我不断收到错误。
我想获取当前用户的 userID 并将其插入到 user_Details 表中,但我不断收到此错误
从字符串转换为 uniqueidentifier 时转换失败
有人可以帮助我吗?
i have a table which has a primary key (UserID) this is of type UniqueIdentifier.
im trying to insert a value into this field but i keep getting an error.
i want to get the userID of the current user and insert the into the user_Details table, but i keep getting this error
Conversion failed when converting from a character string to uniqueidentifier
can some one please help me thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已将参数放入字符串中,因此它不会被识别为参数。结果是您尝试将字符串“@UserID”转换为 GUID,而不是使用参数中的值。
将查询从更改
为:
You have put the parameter inside a string, so it's not identified as a parameter. The effect is that you are trying to convert the string "@UserID" to a GUID instead of using the value in the parameter.
Change the query from
to: