LINQ2Entities 和 Oracle:在 String/nclob 上进行比较

发布于 2024-11-10 09:59:53 字数 306 浏览 4 评论 0原文

我在实体框架中有一个名为 Product 的实体,它有一个名称字段,其类型为 String。 我为 Visual Studio 安装的 Oracle 软件将其转换为 Oracle 中的 NCLOB 列。 我可以插入一些产品。

现在我想做一个 LINQ 查询,其中我根据名称选择单个实体:

Product p1 = ctx.ProductSet.Single(p => p.Name == "FIETS");

这会导致一个异常,告诉我错误 ORA-00932(数据类型不一致)。 我可以做什么来解决这个问题?

I have an Entity called Product in Entity Framework which has a name field, which is of type String.
This gets transformed to a NCLOB column in Oracle, by the Oracle Software I installed for Visual Studio.
I am able to insert a few Products.

Now I want to do for example a LINQ-query where I select a single Entity based on its name:

Product p1 = ctx.ProductSet.Single(p => p.Name == "FIETS");

This results in an exception which tells me that error ORA-00932 (inconsistent datatypes).
What can I do to resolve this?

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

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

发布评论

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

评论(1

不知所踪 2024-11-17 09:59:53

你应该为此骚扰 Oracle。这应该有效。
只要不这样做,他们的实体提供者就坏了。

除此之外,还显示了他们的 EDM 支持有多么糟糕:
真的需要有一个 nclob 类型的名称字段吗? nvarchar 还不够吗?

You should harass Oracle about it. This should work.
As long as it doesn't, their Entity Provider is broken.

Apart from this showing how broken their EDM support is:
Is it really required to have a name field of type nclob? Wouldn't a nvarchar be sufficient?

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