And an example of model
:
public class Grupo
{
public int Id {get;set;}
public string Nome {get;set;}
public ICollection<Item> Itens {get;set:}
}
And the items
public class Item
{
publit int Id {get;set;}
public int GrupoId {get;set;}
public string Nome {get;set;}
}
Is there any way I can filter via% w / o of% only groups containing Items?