讓我們假設我們有以下2個對象(請忽略奇怪的現象,因爲它只是用來模擬真正的問題): public class Person
{
public string FullName { get; set; }
public decimal TotalSalary { get; set; }
public List<Position> Positions { get; set;
我陷入困境與巢。我在Elasticsearch 5.1.1上有一個全新的索引,我試圖用dotnet core定義一個類型映射。 我的類看起來像: public class Review
{
public Guid Id { get; set; }
public User User { get; set; }
public Movie Movie { get; set
讓我們假設我們有一個學生用(嵌套)的得分名單如下: public class Student
{
public string FullName { get; set; }
public List<Score> Scores { get; set; } = new List<int>();
}
public class Score
{
public int V
我對Elasticsearch相當陌生。我一直在試圖實現一個可以忽略撇號的基本搜索功能。我發現documentation這一點。對於實現我用巢庫: [ElasticsearchType]
public class MappingTest
{
[Text(Analyzer = "english")]
public string Title { get; set; }
}