Sorry if I've missed something again. There's a code on the page 663:
HomeIndexViewModel model = new
(
VisitorCount = (new Random()).Next(1, 1001),
Categories = await db.Categories.ToListAsync(),
Products = await db.Products.ToListAsync()
);
With = symbols I get CS0103 errors. Replacing them with : solves the problem:
HomeIndexViewModel model = new
(
VisitorCount : (new Random()).Next(1, 1001),
Categories : await db.Categories.ToListAsync(),
Products : await db.Products.ToListAsync()
);