There are the following Objects:
public class Objeto1
{
public List<Objeto2> PropObj1 {get; set;}
}
public class Objeto2
{
public List<Objeto3> PropObj2 {get; set;}
}
public class Objeto3
{
public int PropObj3 {get; set;}
}
I have an Object List1 and I need to get a filtered list of Object1 , only those with PropObj3 == 1 : p>
List<Objeto1> listaObj1 = new List<Objeto1>();
// Suponhamos que listaObj1 já possui valores inseridos.
var resultado = listaObj1.Where(o1 => o1.PropObj1... ).ToList();
In this case, what would the lambda expression look like? Home I'm using Entity Framework .