Erros com códigos para excluir usando linq

Eu encontrei um problema sobre a exclusão de dados usando a caixa de combinação. O erro me levou a não ter ideia de como resolvê-lo. Alguém pode me ajudar nisso?

private void btnDel_Click(object sender, EventArgs e)
{
    using (testEntities Setupctx = new testEntities())
    {
        var Lo = Convert.ToInt16(cbLocationData.SelectedValue);
        var DeleteLocation = (from delLocation in Setupctx.locations
                              where delLocation.Location1 == Lo
                              select delLocation).Single();
        Setupctx.DeleteObject(DeleteLocation);
        Setupctx.SaveChanges();
        this.Delete_Location_Load(null, EventArgs.Empty);
        MessageBox.Show("Selected Shift Timing Has Been Deleted.");
    }
}

A partewhere delLocation.Location1 == Lo mostrando-me o seguinte erro

O operador '==' não pode ser aplicado a operandos do tipo 'string' e 'short'.

Sua ajuda será muito apreciada.

questionAnswers(4)

yourAnswerToTheQuestion