DEV Community

Discussion on: How YOU can create a Serverless API in C# and .NET

Collapse
 
softchris profile image
Chris Noring

Serverless is a very specific model. Pay only for when code actually need to run. Example, some code needs to run all the time, should be on app service.. Some code can run seldom, for example, a new customer signed up. Serverless is more expensive if the code you make serverless runs all the time.. So Serverless is niche case, you should not turn all your code serverless, just code that can run seldom

Collapse
 
shaijut profile image
Shaiju T

Great use case. Now I understand that all code cant be made serverless. Thank you.