Closed jphellemons closed 6 years ago
Because the method EnsureTestAdminAsync on page 91 is using Where it needs using System.Linq in the SeedData.cs.
EnsureTestAdminAsync
Where
using System.Linq
SeedData.cs
Yep. Ran into the same issue and luckily was able to fix it quick.
Good catch, thanks! Fixed via https://github.com/nbarbettini/little-aspnetcore-book/commit/a88fe4253864ab6181c6b16ea20cc843ab3a0e79.
Because the method
EnsureTestAdminAsync
on page 91 is usingWhere
it needsusing System.Linq
in theSeedData.cs
.