Ошибка при попытке запустить образец программы Microsoft ContactManager - PullRequest
0 голосов
/ 30 мая 2018

Когда я пытаюсь запустить программу Contact Manager для ядра 2.1 asp.net, я получаю ошибку ArgumentNullException, когда программа пытается заполнить базу данных.

System.AggregateException
  HResult=0x80131500
  Message=One or more errors occurred.
  Source=ContactManager
  StackTrace:
   at ContactManager.Program.Main(String[] args) in C:\Users\EphraimF\source\repos\CMfinal\Program.cs:line 41

Inner Exception 1:
ArgumentNullException: Value cannot be null.

The error in generated because a null is returned by `userManager.FindByIdAsync(uid)`.

Репо является частью asp.Документацию по net core 2.1 можно найти здесь: https://docs.microsoft.com/en-us/aspnet/core/security/authorization/secure-data?view=aspnetcore-2.1

...