How to create a Cars endpoint or microservice in .NET
The requirement is to create endpoint that will allow to select Car models that have only Name (in .NET). I need to create a simple endpoint that will filter model by search term and paginations. This is not a problem. I can’t find a good solution for inserting data. I know that I will not add more then 10 000 records in db. And One of the requirements is to be able to update db every year. So, I need a proper solution for that. I have a few solutions like uploading a csv, txt or adding List models in request model. Does anyone faced with this kind of requirement? What solution should I choose?