Need Help With Understanding EF Core and DI in specific case
Hi! Im working on an CRUD WEB API with asp.net
how should I pass database context to the subservice? Currently I have a controller that calls service method to get something and return it. FilmController receive request to save film and provides data to DataService& But I need to check if Actors are already in database and if no than I have to create one and save it to db. Here is code for better understanding.
And here is GetOrCreateActorsClass
Im currently passing csvContext via DI but as soon as its configured scoped that it will create new context and data wont be saved correctley. What should I do? Or should I just pass dbcontext as param for method?
4 Replies
Sorry its just complicated to explain
Both of this services are Scoped
The default scope of a Web API is per HTTPrequest so if youre DI set up is correct it should share the same context
Out of curiosity, what is your Web API serving specifically?
I'm asking because I'm looking for project ideas to practice C#
CSV Processing. Upload download data to/from csv and CRUD Operation on it
Thank you!