
This point generally will get people stuck, and may need a diagram. Remember – should you write your backend API in C Sharp then at dev time, you’ll be running it on a local net server, by way of your code editor. I.e. your frontend and backend are working on 2 completely different web servers, in dev.
However, in production, your frontend should be working on the SAME net server as your backend – primarily because you want them to run underneath the same area. From the start, you should create a login with “Just Enough” entry. If your app only reads and writes data, then it ought to authenticate to your database using a login with solely information reading and writing entry. As you gain extra users, your database will grow to tens of millions of rows. Put some effort into how your database handles this extra quantity and … Read More



