使用适用于 Windows Phone 的 odata 客户端库插入 Unicode 字符串

发布于 2024-11-27 13:32:54 字数 194 浏览 2 评论 0原文

我正在使用适用于 Windows Phone 的 Odata 客户端库来访问我的 azure sql 表。我遇到的一个问题是插入 Unicode 字符串。当我使用sql server management studio时,我在插入查询中的unicode字符串之前放置了一个N,该字符串将正确显示在数据库中。但是,如何以编程方式使用 odata 客户端库实现相同的目标。谢谢。

I am using Odata client library for windows phone to access my azure sql tables. One problem that I had is to insert Unicode string. When I use sql server management studio, I put a N before that unicode string in the insert query, the string will show up in the db correctly. However, how can I achieve the same using odata client library programmatically. Thanks.

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

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

发布评论

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

评论(1

天煞孤星 2024-12-04 13:32:54

Odata 实体属性有一个称为“Unicode”的布尔属性。确保在您在手机上使用的模型上将要设置的实体属性设置为 true,并且您正在访问的 odata 服务的 $metadata url 显示与将 unicode 属性设置为相同的实体属性真的。

Odata entity properties have a boolean attribute called "Unicode". Make sure it's set to true on the model you're using on the phone for the entity property you're setting, and that the $metadata url of the odata service you're accessing shows the the same entity property setting the unicode attribute to true.

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