使用适用于 Windows Phone 的 odata 客户端库插入 Unicode 字符串
我正在使用适用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.