var q = _context.a
.Include(x => x.status)
.Include(x => x.type)
.Where(x => x.status == 20);
var q1 = _context.a
.Include(x => x.status)
.Include(x => x.type)
.Where(x => x.status == 40);
I need to have data in q1 at the end of q