I have the following table:
USUARIO
Nome | Idade
João | 21
Maria | 18
I want to make only one query that returns all users, or only returns users of a specific age based on a C # variable.
Also by name.
int idade = 18;
string nome = "";
var resultado = (from u in db.Usuario
// Se idade != 0 considerar o where.
// Caso contrário, trazer todos os usuarios.
where u.Nome == nome && u.Idade == idade).ToList();
How could I do this?
I'm using Entity Framework.