Good day!
I have this query as shown below:
jt.SummarySpecs.Where(
x => true
)
.FirstOrDefault()
.DocSpecs
.Where(
x => x.DocID == x.DocID
)
.FirstOrDefault()
.FinishingOptionsDesc[0] = option;
But when the code get executed, value for finishingOptionsDesc[0] is not updating...
what's wrong with the query above?
The classes attributes:
"SummarySpecs.cs"
public DocSpec[] DocSpecs { get; set; }
"DocSpecs.cs"
public string[] FinishingOptionsDesc { get; set; }
My only concern is to update the FinishingOptionDesc 1st string.
Thanks