Hi there,
I hope someone can give me some suggestion on how to face this issue. I have a S#arp Architecture application with a primary centralized db and that works fine. I need to extract data from the central bd and save it to a smaller sqlite db and then, eventually import it back. The sqlite connection has to be temporary. Open the connection, save or retrieve the data, close the connection. What is the best way to achieve my goal? I was thinking to use NhibernateSession.Addonfiguration(...) to access the sqlite db, work on it and then close the session factory, but I don't know if this is the best solution.
Should I pursue this way or I am better of using a traditional approach? Thank you in advance