我正在使用全文搜索,但是关于如何使用EF Core 2.1进行100%的不清楚。
似乎EF Core 2.1可能已经实现了对全文搜索的部分支持,但我没有找到有关如何实际使用它的任何教程。
我的理解是,我将不得不在其中一列中添加全文索引。
所以如果我有这张桌子
public class Company {
public string Name {get; set;}
}
public class CompanyConfig : IEntityTypeConfiguration<Company>
{
public void Configure(EntityTypeBuilder<Company> builder)
{
builder.HasKey(x => x.Id);
builder.Property(x => x.Name).HasMaxLength(100).IsRequired();
}
}
如何将全文索引添加到我的Name属性?
最佳答案
现在,您需要在迁移中使用SQL函数手动添加它们。
从EF Core 2.1开始,尚未创建全文索引。有关更多详细信息,请参阅此问题跟踪器https://github.com/aspnet/EntityFrameworkCore/issues/11488。
综上所述;
从https://github.com/aspnet/EntityFrameworkCore/commit/2a6ccad8821f9360ae753bce41d63811185b8912的测试中提取的示例C#Linq查询FreeText。
using (var context = CreateContext())
{
var result = await context
.Employees
.Where(c => EF.Functions.FreeText(c.Title, "Representative"))
.ToListAsync();
Assert.Equal(result.First().EmployeeID, 1u);
Assert.Equal(
@"SELECT [c].[EmployeeID], [c].[City], [c].[Country], [c].[FirstName], [c].[ReportsTo], [c].[Title] FROM [Employees] AS [c] WHERE FREETEXT([c].[Title], N'Representative')",
Sql,
ignoreLineEndingDifferences: true,
ignoreWhiteSpaceDifferences: true);
}
关于c# - EF Core 2.1中的全文本搜索?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51028387/