I need to change the string to int, but it is located inside a hql, I will probably have to terminate the query, but it from the error to enter the database, my code is a c # with asp.net, mvc, nhibernate.
public void soma(Rota post)
{
//* Tentativa de criação de query ja foi efetuada e não deu certo.
string hql = "SELECT Km_Atual FROM Rota WHERE Id=LAST_INSERT_ID()";
//* Tentar converter o hql para int, para fazer comparação em if.
int Km_Ultima = Convert.ToInt16(hql);
if (Km_Ultima <= p.Km_Atual)