当 Id 为 NHibernate 中的 Guid 时,无法从 Oracle 加载

发布于 2024-10-28 12:15:12 字数 360 浏览 2 评论 0原文

我们将一个对象保存到 NHibernate,其中 Id 类型为 Guid。根据我们发现的其他内容,我们将其作为 char(36) 类型。

  • 我们创建一个对象并通过 NHibernate 保存它。这工作正常,我们在列中看到 64599239BB0C1C48B44C36D9F9267830
  • 当我们尝试使用 guid 加载时,我们没有得到任何结果,并且 NHibernate Profiler 显示 WHERE 子句正在查找不匹配的 0x64599239BB0C1C48B44C36D9F9267830

显然我们做错了什么......所以有什么想法吗?

We're saving an object to NHibernate where the Id is typed Guid. Based on other things we've found we have this as a type char(36).

  • We create an object and save it via NHibernate. This works fine and we see 64599239BB0C1C48B44C36D9F9267830 in the column.
  • When we then try to load using a guid we don't get any results and NHibernate Profiler shows that the WHERE clause is looking for 0x64599239BB0C1C48B44C36D9F9267830 which isn't matching.

Obviously we're doing something wrong.. so any ideas what?

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

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

发布评论

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

评论(1

请你别敷衍 2024-11-04 12:15:12

数据库上的数据类型应为 RAW,长度为 16。这就是尝试使用 NHibernate 重新创建数据库所产生的结果。

The data type on the database should be RAW, and of 16 length. This is what trying to recreate the database using NHibernate produces.

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