良い一日!
以下に示すように、このクエリがあります。
jt.SummarySpecs.Where(
x => true
)
.FirstOrDefault()
.DocSpecs
.Where(
x => x.DocID == x.DocID
)
.FirstOrDefault()
.FinishingOptionsDesc[0] = option;
しかし、コードが実行されると、finishingOptionsDesc[0] の値が更新されません...
上記のクエリの何が問題になっていますか?
クラスの属性:
"SummarySpecs.cs"
public DocSpec[] DocSpecs { get; set; }
"DocSpecs.cs"
public string[] FinishingOptionsDesc { get; set; }
私の唯一の懸念は、FinishingOptionDesc の最初の文字列を更新することです。
ありがとう