I want to obtain a record of an existing article in the database, what I do is that in a textbox I capture the text. The fact is that with ==
works for some articles, but for many of these, it does not generate a null reference, I want to try like
until now I have tried the following
var QueryArticulo = _db.articuloes.Where(s => s.nombre like "'%'+TextBoxArticulo.Text+'%'");
some form of how to incorporate it or what else can I use?