I have my next table called LIST with two columns: Id, and Name, in the Name column I have 4 data: Notes, Agenda, Authorization and Membership.
public IQueryable Listar1()
{
return from titus1 in Contexto.LISTA
select new
{
titus1.Nombre
};
}
But I just want to show the Calendar and Membership data, from the Name column.