csharpfritz / InstantAPIs

A library that generates Minimal API endpoints for an Entity Framework context.
MIT License
448 stars 57 forks source link

Allow injection of business logic #52

Open csharpfritz opened 2 years ago

csharpfritz commented 2 years ago

Introduce Action parameters on configuration that optionally allow injection of methods to be triggered before the data interaction and after the data interaction

csharpfritz commented 2 years ago

I'm considering closing this as it introduces more functionality that pushes towards writing more code than building a minimal API directly

gingters commented 1 year ago

I'd like to have these. Idea would be to execute code after the instant API saved the changes, i.e. to send the change out to connected clients via SignalR (realtime-push about added / changed entries).