使用 FilterDescriptor 进行国际编码(带重音符号的字符)

发布于 2024-10-31 02:22:49 字数 303 浏览 2 评论 0原文

简单的问题...我有一项返回用户的服务,并且我实现了 FilterDescriptor 调用该服务来填充网格。

过滤描述符具有 Contains 运算符,只要用户的名字或姓氏没有重音符号,它就可以正常工作。 如果我想搜索“Gómez”是我的桌子,我希望能够只输入“gomez”,但它不起作用。

我是否缺少财产或其他东西?我怎样才能做到这一点?

Simple question... I have a service which returns the users and I implemented a FilterDescriptor which calls that service to populate a grid.

The filterdescriptor has the Contains operator and it works fine as far as the user's first or last name does not have accents.
If I want to search for the 'Gómez' is my table, I want to be able to just type 'gomez', but that it's not working.

Is there a property or something I'm missing? How can I achieve that?

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

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

发布评论

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

评论(1

隔岸观火 2024-11-07 02:22:49

这个问题帮助了我...
使用 LINQ to SQL 忽略 SQL Server 中的重音

ALTER TABLE IDBUsers ALTER COLUMN LastName nvarchar(256) COLLATE SQL_Latin1_General_CP1_CI_AI

This question helped me out...
Ignoring accents in SQL Server using LINQ to SQL

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