The below query is returning error:
The property expression is not valid. The expression should represent a property access: 't => t.MyProperty'.
var list = this.DataContext
.GetDbSet<Table1>()
.Include(t => t.Table2.Where(i=>i.Active == true))
.Include("Table2.Table3")
.ToListAsync();
How can achieve the above query?