Closed
Description
There are a few improvements that can be done to the auto generated endpoints:
- GET endpoints could have
.AsNoTracking()
added to the query - DELETE endpoints could do
.Attach()
->.Remove()
instead of.Get()
->.Remove()
to avoid making two calls - UPDATE could possibly be improved similarly to DELETE