Given an EF Core DbContext, what is the key behavioral difference between these two lines?// Line A var a = db.Users.Where(u => u.Age > 30).ToList(); // Line B var b = db.Users.AsEnumerable().Where(u => u.Age > 30).ToList();