-
-
Notifications
You must be signed in to change notification settings - Fork 159
Closed
Labels
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
jaredcnance