AI - ChatGPT

Thoughts of ChatGPT

ChatGPT is touted as a programmer. But it doesn’t generate the program. It generates samples up to about 50 lines of code.
* You must phrase it to generate less than 50 lines of code, or the sample will be truncated.

ChatGPT designing databases

  • When you ask for a table structure the primary key is named after the table. For example inventory table might have a primary key of InventoryID. This is ok, and cool, however it doesn’t work I our system because we have a base entity.cs and BaseEntityVM.cs which assume the primary key is named ID. But maybe these aren’t needed.