Question: How do you solve the Entity Framework Core Error: "An Unhandled Exception Occurred While Processing the Request"?
Please Login to see the rest of the answer
Answer: Add nullable's to the Modal Class like so: public int? Old {get; set;} or public string? youName {get; set;}
What is happening is that the data getting retrieved has empty strings in it or is null.
Write an Article