Find answers to common questions about our products and services. If you can't find what you're looking for, feel free to reach out!
BasicCRUD is a simple example project demonstrating CRUD operations with ASP.NET Core and EF Core.
You can insert a new FAQ using the API endpoint or directly using SQL INSERT statements.
Use the PUT endpoint or run an UPDATE statement on the Faqs table.
Use the DELETE endpoint or run a DELETE statement on the Faqs table.
Use the GET endpoint or run a SELECT * FROM dbo.Faqs.