Hi I have this Query here:
QueryExpression query = new QueryExpression(); query.EntityName = "invoicedetail"; query.ColumnSet.Columns.Add("f1_agreementinvoiceproduct"); query.LinkEntities.Add(new LinkEntity("invoicedetail", "invoice", "invoiceid", "invoiceid", JoinOperator.Inner)); query.LinkEntities[0].EntityAlias = "invoice";
How would I go an add another linked Entity onto this Query?