0

動的検索に適合するように紺碧のテーブルを設計することを知っている、または経験したことのある人はいますか?
ライブラリクラスがあります:

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:一致したデータのパーティションキーと行キーを返します

必要なテーブルを設計するためのより良い方法は考えられません。
なにか提案を?

4

2 に答える 2