public string Funcionario_RetornaNomeJaCadastrado(string nome) { nome = nome.ToUpper(); nome = "%" + nome + "%"; FUNCIONARIOTableAdapter funcionario = new FUNCIONARIOTableAdapter(); string NomedaTabela = ""; var pesquisa = funcionario.RetornarNomeFuncionario(nome); if (pesquisa != null) { NomedaTabela = pesquisa.ToString(); } return NomedaTabela; }