I'm having trouble understanding how to bring a query from the textbox
of a column where the field is decimal?
if (txtNomePesquisar.Text.Equals(""))
{
MessageBox.Show("O que você procura? ");
}
else
{
var clientes = cc
.TB_CLIENTEs.Where(c => c.NOM_CLIENTE.Contains(txtNomePesquisar.Text)).ToList();
dgvCliente.DataSource = clientes;
}
if (txtTelPesquisar.Text.Equals(""))
{
/// a mensagem é 'decimal' does contain a definition for (Contains) and...
/// e fala de IQueryable mais não sei utilizar ainda
///
var clientes = cc.TB_CLIENTEs
.Where(c => c.TEL_CLIENTE.Contains(txtTelPesquisa.Text)).ToList();
}