任何人都知道或有设计 azure table 以适应动态搜索的经验?
我有一个图书馆类:
public class LibraryDocument
{
public string DocumentNumber { get; set; }
public string Complaint { get; set; }
public string Respondent { get; set; }
public string DocumentDate { get; set; }
public string Division { get; set; }
public string DocumentType { get; set; }
public string Content { get; set; }
public string Footer { get; set; }
public string Title { get; set; }
public string[] FooterItems { get; set; }
public string[] RespondentList { get; set; }
public string[] ComplaintList { get; set; }
}
我需要将其转换为天蓝色表。
Input:
客户端将通过api发送关键字
Process:
系统必须能够匹配所有库数据中的关键字
Output:
返回匹配数据的Partitionkeys和Rowkeys
我想不出更好的方法来设计所需的表格。
有什么建议吗?