meysamhadeli / booking-microservices

Practical microservices, built with .Net 8, DDD, CQRS, Event Sourcing, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
MIT License
941 stars 188 forks source link

stored procs #277

Closed mninawa closed 1 year ago

mninawa commented 1 year ago

Hi Guys how would you execute a stored proc, can you please give a guide

meysamhadeli commented 1 year ago

Hi Guys how would you execute a stored proc, can you please give a guide

Hi, In this project, we don't use store procedure, because maintain of store procedure is a little hard. And with ef-core and linq we have more flexibility and easy to maintain. For using store procedure, you can use dapper or ef-core for calling store procedure directly.