ctx.GetAll().include(o=>o.NavProp.Where(p=>p.Id==someId);
ctx.GetAll().Include(o=>o.NavProp).Where(p=>p.NavProp.Id==someId);
var result = _context.ctx.GetAll(); _context.Entry(result).Collection(o => o.NavProp).Query().Where(p=> p.NavProp.Id == someId).tolist();
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)