I have an app with an Angular 7 front end and a back-end consisting of a Microsoft Web API utilizing Entity Framework Code First connected to a sql database. I have a column with data stored as a DATE type. When I access the data using {{myDate}} it displays 2020-04-05T00:00:00Z, but if I use {{myDate | date}} it displays 4/04/20.
The first date April 5th is correct, but the second date created via the pipe is displaying April 4th.