How can I concatenate the '%' symbol at the end of a query result? I know how to do it in SQL but I have no idea how to do it with linq. The result that I am getting now is 83. How can I make it 83%?
private void SetLaborStandard()
{
int.TryParse(MDate.ToString("MM"), out int month);
LaborStandard = Decimal.Round(Convert.ToDecimal(db.KPIs.Where(a => a.sMonth == month).Select(a => a.LaborStandard*100).FirstOrDefault()), 2, MidpointRounding.AwayFromZero);
}