Make Entity Framework use Contains instead of Like and explain #39;ESCAPE ~#39;(使实体框架使用 Contains 而不是 Like 并解释 ESCAPE ~)
问题描述
我有一行 LINQ,我在 EF 中使用它基本上是在做 myTable.Where(c => c.Contains('mystring'));
I have a line of LINQ that im using in EF which is basically doing myTable.Where(c => c.Contains('mystring'));
这是生成的代码:
SELECT TOP (300)
[Extent1].[ID] AS [ID],
[Extent1].[FKFishEntityID] AS [FKFishEntityID],
[Extent1].[Fish] AS [Fish],
[Extent1].[FishText] AS [FishText],
[Extent1].[FishType] AS [FishType]
FROM [dbo].[Fish] AS [Extent1]
WHERE [Extent1].[FishText] LIKE @p__linq__0 ESCAPE '~'
我的两个问题是:
如何让它使用 CONTAINS(...) 而不是 LIKE?当表使用全文索引时,LIKE 似乎非常慢.复制和粘贴查询需要 4 秒才能执行,但如果我将 LIKE 更改为 CONTAINS() 它会立即执行.
How do I make it use CONTAINS(...) instead of LIKE? It seems that LIKE is very slow when the table is using full text indexing. Copying and pasting the query it takes 4 seconds to execute, but if I change LIKE to CONTAINS() it executes instantly.
为什么要 ESCAPE '~' ?通过将其复制并粘贴到 SQL Server 中,如果我删除 'ESCAPE' 部分,它的执行速度会快 4 倍左右.
Why does it do ESCAPE '~' ? By copying + pasting this into SQL server, it executes around 4 times faster if I remove the 'ESCAPE' part.
推荐答案
来自【实体框架博客】:1
from the [entity framework blog]:1
目前没有计划对全文搜索提供原生支持.您需要使用原始 SQL 查询.
There is no native support for full-text search planned at the moment. You would need to use a raw SQL query.
似乎要走的路是这样的:
Seems that the way to go is something like this:
using (var context = new BloggingContext())
{
var fishes = context.Fishes.SqlQuery("SELECT * FROM dbo.Fishes WHERE CONTAINS(FishText, @p0)", searchPhrase).ToList();
}
这篇关于使实体框架使用 Contains 而不是 Like 并解释 'ESCAPE ~'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使实体框架使用 Contains 而不是 Like 并解释 'ESCAPE ~'
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01