API

Integration topics

Imagine, I have a C# program (or API), and I have an angular program that communicates with the API.

This page covers a number of topics that have come up since working in this configuration.

[[Date]] Issue. The issue was the database had a date type column. I had problems getting the angular program to send a date in the proper format. It was so problematic that I converted the data type of the date column to a string. That is my entity object had a datatype of DateTime. My view model object had a data type of string. The Angular integration started working.