LINQ to SQL SOUNDEX - 可能吗?
我对此做了一些研究,并浏览了 StackOverflow 上的一些文章以及一些博客文章,但尚未找到确切的答案。我还了解到可以使用 4.0 框架来做到这一点,但尚未找到任何支持证据。
所以我的问题是,是否可以通过 LINQ to SQL 查询执行 SOUNDEX?
I have done a little bit of research on this and looked through a few articles both here on StackOverflow as well as some blog posts, but haven't found an exact answer. I also read that it is possible to do it using the 4.0 framework, but have yet to find any supporting evidence.
So my question, is it possible to perform SOUNDEX via a LINQ to SQL Query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
添加如下 udf
只需将其从服务器资源管理器拖到 Visual Studio dbml 文件中的数据上下文上,然后在代码中将其用作数据上下文类上公开的方法即可。
Add a udf as below
Simply drag it from server explorer onto you data context in the visual studio dbml file and use it in code as a method exposed on your datacontext class..
从 .net 4 开始,这也将起作用:
更多信息在这里:http://msdn.microsoft.com/en-us/library/system.data.objects.sqlclient.sqlfunctions.soundcode.aspx
Since .net 4 this will work as well:
More info here: http://msdn.microsoft.com/en-us/library/system.data.objects.sqlclient.sqlfunctions.soundcode.aspx
这正是“使用 C# 4.0 的 LINQ to Objects” 中演示的内容特洛伊·马根尼斯著。
编辑:添加示例花絮和说明:作者的示例是针对 LINQ to 对象而不是 LINQ to SQL。作者简单地做了一个 IEqualityComparer,其中一些片段看起来像这样......
That is precisely something which is demonstrated in "LINQ to Objects Using C# 4.0" by Troy Magennis.
EDIT: Adding example tid-bits and clarification: the author's example is for LINQ to objects rather than LINQ to SQL. The author simply made an IEqualityComparer, some pieces of which looked like this...
对于使用 EF Core 6.0 和 SQL Server v16 (2022) 的任何人(我尚未使用任何其他版本的 EF 或 SQL Server 进行测试),
及其用途 -
For anyone using EF Core 6.0 with SQL Server v16 (2022) ( I haven't tested with any other versions of EF or SQL Server),
And its use -
您还可以使用 SqlFucntions.Difference 方法,该方法映射到 Soundex 函数:
SqlFunctions.Difference(string, string) 返回 int - 返回值越高,字符串越“相似”。
You can also use the SqlFucntions.Difference method, which maps to the Soundex function:
SqlFunctions.Difference(string, string) returns int - the higher the return value, the more "similar" the strings are.
在 SQL Server 上,您可以将 SOUNDEX 包装在 UDF(用户定义函数)中。您可以将其添加到 DataContext 类中,然后您应该能够通过 DataContext 使用它。
On the SQL Server, you can wrap SOUNDEX in a UDF (User-Defined function). You can add that to your DataContext class, and then you should be able to use it through the DataContext.
您可以使用假 UDF 在数据库中执行此操作;在分部类中,向数据上下文添加一个方法:
您可以使用如下表达式:
最初的想法来自:
从 Linq 到 Sql 的随机行
You can do this at the database, by using a fake UDF; in a partial class, add a method to the data context:
You can use as an expression like:
Initial idea from:
Random row from Linq to Sql